33 lines
829 B
C#
33 lines
829 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
// Token: 0x0200025C RID: 604
|
|
internal struct MonoPropertyInfo
|
|
{
|
|
// Token: 0x06001F73 RID: 8051
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal static extern void get_property_info(MonoProperty prop, ref MonoPropertyInfo info, PInfo req_info);
|
|
|
|
// Token: 0x06001F74 RID: 8052
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal static extern Type[] GetTypeModifiers(MonoProperty prop, bool optional);
|
|
|
|
// Token: 0x04000AD4 RID: 2772
|
|
public Type parent;
|
|
|
|
// Token: 0x04000AD5 RID: 2773
|
|
public string name;
|
|
|
|
// Token: 0x04000AD6 RID: 2774
|
|
public MethodInfo get_method;
|
|
|
|
// Token: 0x04000AD7 RID: 2775
|
|
public MethodInfo set_method;
|
|
|
|
// Token: 0x04000AD8 RID: 2776
|
|
public PropertyAttributes attrs;
|
|
}
|
|
}
|