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

_GetFieldDefProps() private method

private _GetFieldDefProps ( IntPtr scope, MetadataArgs &skipAddresses, int mdToken, int &fieldAttributes ) : void
scope System.IntPtr
skipAddresses MetadataArgs
mdToken int
fieldAttributes int
return void
        private static extern void _GetFieldDefProps(IntPtr scope, out MetadataArgs.SkipAddresses skipAddresses, int mdToken, out int fieldAttributes);
        public void GetFieldDefProps(int mdToken, out FieldAttributes fieldAttributes) 

Usage Example

Esempio n. 1
0
        public void GetFieldDefProps(int mdToken, out FieldAttributes fieldAttributes)
        {
            int fieldAttributes1;

            MetadataImport._GetFieldDefProps(this.m_metadataImport2, mdToken, out fieldAttributes1);
            fieldAttributes = (FieldAttributes)fieldAttributes1;
        }