Browse Source

SMB2: Added helper methods to QUERY_INFO response implementation

Tal Aloni 7 years ago
parent
commit
b3af07e5e4
1 changed files with 15 additions and 0 deletions
  1. 15 0
      SMBLibrary/SMB2/Commands/QueryInfoResponse.cs

+ 15 - 0
SMBLibrary/SMB2/Commands/QueryInfoResponse.cs

@@ -51,6 +51,21 @@ namespace SMBLibrary.SMB2
             ByteWriter.WriteBytes(buffer, offset + FixedSize, OutputBuffer);
         }
 
+        public FileInformation GetFileInformation(FileInformationClass informationClass)
+        {
+            return FileInformation.GetFileInformation(OutputBuffer, 0, informationClass);
+        }
+
+        public FileSystemInformation GetFileSystemInformation(FileSystemInformationClass informationClass)
+        {
+            return FileSystemInformation.GetFileSystemInformation(OutputBuffer, 0, informationClass);
+        }
+
+        public SecurityDescriptor GetSecurityInformation()
+        {
+            return new SecurityDescriptor(OutputBuffer, 0);
+        }
+
         public void SetFileInformation(FileInformation fileInformation)
         {
             OutputBuffer = fileInformation.GetBytes();