Explorar o código

SMB2: Added helper methods to QUERY_INFO response implementation

Tal Aloni %!s(int64=7) %!d(string=hai) anos
pai
achega
b3af07e5e4
Modificáronse 1 ficheiros con 15 adicións e 0 borrados
  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();