dotnet: RejectIrpPriorToTransact0

This commit is contained in:
Bill Zissimopoulos
2020-02-07 17:07:50 -08:00
parent 24b5d48fed
commit 10f4df519c
3 changed files with 7 additions and 0 deletions

View File

@ -307,6 +307,11 @@ namespace Fsp
get { return 0 != (_VolumeParams.Flags & VolumeParams.WslFeatures); }
set { _VolumeParams.Flags |= (value ? VolumeParams.WslFeatures : 0); }
}
public Boolean RejectIrpPriorToTransact0
{
get { return 0 != (_VolumeParams.Flags & VolumeParams.RejectIrpPriorToTransact0); }
set { _VolumeParams.Flags |= (value ? VolumeParams.RejectIrpPriorToTransact0 : 0); }
}
/// <summary>
/// Gets or sets the prefix for a network file system.
/// </summary>