Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetPropertyProps()

unsafe void System.Reflection.MetadataImport.GetPropertyProps ( int mdToken,
out void * name,
out PropertyAttributes propertyAttributes,
out ConstArray signature )
inline

Definition at line 161 of file MetadataImport.cs.

162 {
163 System.Runtime.CompilerServices.Unsafe.SkipInit(out void* ptr);
164 _GetPropertyProps(m_metadataImport2, mdToken, &ptr, out var propertyAttributes2, out signature);
165 name = ptr;
166 propertyAttributes = (PropertyAttributes)propertyAttributes2;
167 }
static unsafe void _GetPropertyProps(IntPtr scope, int mdToken, void **name, out int propertyAttributes, out ConstArray signature)

References System.Reflection.MetadataImport._GetPropertyProps(), and System.Reflection.MetadataImport.m_metadataImport2.