From 7f83c70a45daf22f41fa5ab171569a70b967e153 Mon Sep 17 00:00:00 2001 From: Tal Aloni Date: Fri, 10 Feb 2017 17:16:36 +0200 Subject: [PATCH] FileAllInformation: Minor improvement --- .../FileInformation/Query/FileAllInformation.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SMBLibrary/NTFileStore/Structures/FileInformation/Query/FileAllInformation.cs b/SMBLibrary/NTFileStore/Structures/FileInformation/Query/FileAllInformation.cs index 50b336d..7c6c05e 100644 --- a/SMBLibrary/NTFileStore/Structures/FileInformation/Query/FileAllInformation.cs +++ b/SMBLibrary/NTFileStore/Structures/FileInformation/Query/FileAllInformation.cs @@ -27,6 +27,15 @@ namespace SMBLibrary public FileAllInformation() { + BasicInformation = new FileBasicInformation(); + StandardInformation = new FileStandardInformation(); + InternalInformation = new FileInternalInformation(); + EaInformation = new FileEaInformation(); + AccessInformation = new FileAccessInformation(); + PositionInformation = new FilePositionInformation(); + ModeInformation = new FileModeInformation(); + AlignmentInformation = new FileAlignmentInformation(); + NameInformation = new FileNameInformation(); } public FileAllInformation(byte[] buffer, int offset)