System.Reflection.MetadataImport._GetCustomAttributeProps C# (CSharp) Method

_GetCustomAttributeProps() private method

private _GetCustomAttributeProps ( IntPtr scope, MetadataArgs &skipAddresses, int customAttributeToken, int &constructorToken, ConstArray &signature ) : void
scope System.IntPtr
skipAddresses MetadataArgs
customAttributeToken int
constructorToken int
signature ConstArray
return void
        private static extern void _GetCustomAttributeProps(IntPtr scope, out MetadataArgs.SkipAddresses skipAddresses, 
            int customAttributeToken, 
            out int constructorToken, 
            out ConstArray signature);
        

Usage Example

Esempio n. 1
0
 public void GetCustomAttributeProps(int customAttributeToken, out int constructorToken, out ConstArray signature)
 {
     MetadataImport._GetCustomAttributeProps(this.m_metadataImport2, customAttributeToken, out constructorToken, out signature);
 }