inc, sys, dotnet: FSP_FSCTL_VOLUME_PARAMS::AllowOpenInKernelMode

This commit is contained in:
Bill Zissimopoulos
2018-10-02 11:47:51 -07:00
parent 02a4d3641e
commit 1aab4662e5
4 changed files with 20 additions and 4 deletions

View File

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