|
@@ -1,4 +1,4 @@
|
|
|
-/* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
+/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
*
|
|
|
* You can redistribute this program and/or modify it under the terms of
|
|
|
* the GNU Lesser Public License as published by the Free Software Foundation,
|
|
@@ -86,6 +86,44 @@ namespace SMBLibrary.SMB1
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public bool CloseAfterRequest
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return ((this.Flags & FindFlags.SMB_FIND_CLOSE_AFTER_REQUEST) > 0);
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ if (value)
|
|
|
+ {
|
|
|
+ this.Flags |= FindFlags.SMB_FIND_CLOSE_AFTER_REQUEST;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ this.Flags &= ~FindFlags.SMB_FIND_CLOSE_AFTER_REQUEST;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public bool CloseAtEndOfSearch
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return ((this.Flags & FindFlags.SMB_FIND_CLOSE_AT_EOS) > 0);
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ if (value)
|
|
|
+ {
|
|
|
+ this.Flags |= FindFlags.SMB_FIND_CLOSE_AT_EOS;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ this.Flags &= ~FindFlags.SMB_FIND_CLOSE_AT_EOS;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
public override Transaction2SubcommandName SubcommandName
|
|
|
{
|
|
|
get
|