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

◆ GetPropertyOrFieldData()

static unsafe void System.Reflection.CustomAttribute.GetPropertyOrFieldData ( RuntimeModule module,
ref IntPtr blobStart,
IntPtr blobEnd,
out string name,
out bool isProperty,
out RuntimeType type,
out object value )
inlinestaticprivate

Definition at line 526 of file CustomAttribute.cs.

527 {
528 byte* ptr = (byte*)(void*)blobStart;
529 _GetPropertyOrFieldData(module, &ptr, (byte*)(void*)blobEnd, out name, out isProperty, out type, out value);
530 blobStart = (IntPtr)ptr;
531 }
static unsafe void _GetPropertyOrFieldData(RuntimeModule pModule, byte **ppBlobStart, byte *pBlobEnd, out string name, out bool bIsProperty, out RuntimeType type, out object value)

References System.type, and System.value.

Referenced by System.Reflection.CustomAttribute.AddCustomAttributes().