Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expectInfoClass (0.18 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

         * @param expectInfoClass
         *            the expected information class in the response
         */
        public Smb2QueryInfoResponse(final Configuration config, final byte expectInfoType, final byte expectInfoClass) {
            super(config);
            this.expectInfoType = expectInfoType;
            this.expectInfoClass = expectInfoClass;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java

        public Smb2QueryDirectoryResponse(final Configuration config, final byte expectInfoClass) {
            super(config);
            this.expectInfoClass = expectInfoClass;
        }
    
        /**
         * Gets the directory entries returned by the query
         *
         * @return the fileInformation
         */
        public FileEntry[] getResults() {
            return this.results;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top