System.Reflection.PseudoCustomAttribute._GetSecurityAttributes C# (CSharp) Method

_GetSecurityAttributes() private method

private _GetSecurityAttributes ( void module, int token, object &securityAttributes ) : void
module void
token int
securityAttributes object
return void
        unsafe private static extern void _GetSecurityAttributes(void* module, int token, out object[] securityAttributes);
        unsafe internal static void GetSecurityAttributes(ModuleHandle module, int token, out object[] securityAttributes)

Usage Example

Esempio n. 1
0
 internal static void GetSecurityAttributes(RuntimeModule module, int token, bool assembly, out object[] securityAttributes)
 {
     PseudoCustomAttribute._GetSecurityAttributes(module.GetNativeHandle(), token, assembly, out securityAttributes);
 }