@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The SID_IDENTIFIER_AUTHORITY structure represents the top-level authority of a security identifier (SID). !!!!C# Definition: struct SID_IDENTIFIER_AUTHORITY { [MarshalAs(UnmanagedType.ByValArray, SizeConst=6)] public byte[] Value; public SID_IDENTIFIER_AUTHORITY(byte[] value) { Value = value; } } !!!!VB Definition: Structure SID_IDENTIFIER_AUTHORITY <MarshalAs(UnmanagedType.ByValArray, SizeConst:=6)> _ Public Value() As Byte Public Sub New(ByVal val As Byte()) Value = val End Sub End Structure !!!!User-Defined Field Types: None. !!!!Notes: Used by InitializeSid Documentation: SID_IDENTIFIER_AUTHORITY@msdn on MSDN
Edit Structures.SID
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.