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

_GetPropertyProps() private method

private _GetPropertyProps ( IntPtr scope, MetadataArgs &skipAddresses, int mdToken, void name, int &propertyAttributes, ConstArray &signature ) : void
scope System.IntPtr
skipAddresses MetadataArgs
mdToken int
name void
propertyAttributes int
signature ConstArray
return void
        private unsafe static extern void _GetPropertyProps(IntPtr scope, out MetadataArgs.SkipAddresses skipAddresses, 
            int mdToken, void** name, out int propertyAttributes, out ConstArray signature);
        public unsafe void GetPropertyProps(int mdToken, out void* name, out PropertyAttributes propertyAttributes, out ConstArray signature) 

Usage Example

Esempio n. 1
0
        public unsafe void GetPropertyProps(int mdToken, out void *name, out PropertyAttributes propertyAttributes, out ConstArray signature)
        {
            void *voidPtr;
            int   propertyAttributes1;

            MetadataImport._GetPropertyProps(this.m_metadataImport2, mdToken, &voidPtr, out propertyAttributes1, out signature);
            name = voidPtr;
            propertyAttributes = (PropertyAttributes)propertyAttributes1;
        }
All Usage Examples Of System.Reflection.MetadataImport::_GetPropertyProps