Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toString (0.19 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcHandle.java

         * @throws CIFSException
         */
        public abstract byte[] getSessionKey () throws CIFSException;
    
    
        @Override
        public String toString () {
            return this.binding.toString();
        }
    
    
        protected abstract void doSendFragment ( byte[] buf, int off, int length ) throws IOException;
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

        public Principal getPrincipal() {
            if (this instanceof DcerpcPipeHandle)
                return ((DcerpcPipeHandle)this).pipe.getPrincipal();
            return null;
        }
        public String toString() {
            return binding.toString();
        }
    
        protected abstract void doSendFragment(byte[] buf,
                    int off,
                    int length,
                    boolean isDirect) throws IOException;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top