File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -972,6 +972,11 @@ public bool SilentBreakawayOk
972972 /// </summary>
973973 public ServerSiloBasicInformation ServerSiloBasicInformation => Query < ServerSiloBasicInformation > ( JobObjectInformationClass . JobObjectServerSiloBasicInformation ) ;
974974
975+ /// <summary>
976+ /// Get Silo user shared data.
977+ /// </summary>
978+ public SiloUserSharedData SiloUserSharedData => Query < SiloUserSharedData > ( JobObjectInformationClass . JobObjectServerSiloUserSharedData ) ;
979+
975980 #endregion
976981
977982 #region Private Members
Original file line number Diff line number Diff line change @@ -298,7 +298,8 @@ public struct SiloUserSharedData
298298 public NtProductType NtProductType ;
299299 public int SuiteMask ;
300300 public int SharedUserSessionId ;
301- public byte IsMultiSessionSku ;
301+ [ MarshalAs ( UnmanagedType . U1 ) ]
302+ public bool IsMultiSessionSku ;
302303 [ MarshalAs ( UnmanagedType . ByValTStr , SizeConst = 260 ) ]
303304 public string NtSystemRoot ;
304305 [ MarshalAs ( UnmanagedType . ByValArray , SizeConst = 16 ) ]
You can’t perform that action at this time.
0 commit comments