void NativeMethods.ISecurityInformation.GetInheritTypes(out InheritTypeInfo[] InheritTypes, out uint InheritTypesCount)
 {
     System.Diagnostics.Debug.WriteLine("GetInheritTypes");
     InheritTypes      = prov.GetInheritTypes();
     InheritTypesCount = (uint)InheritTypes.Length;
 }
示例#2
0
 void ISecurityInformation.GetInheritTypes(out SI_INHERIT_TYPE[] inheritTypes, out uint inheritTypesCount)
 {
     System.Diagnostics.Debug.WriteLine("GetInheritTypes");
     inheritTypes      = prov.GetInheritTypes();
     inheritTypesCount = (uint)inheritTypes.Length;
 }