scripts
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace System.Runtime.InteropServices
|
||||
{
|
||||
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> instead.</summary>
|
||||
// Token: 0x02000321 RID: 801
|
||||
[Obsolete]
|
||||
[Serializable]
|
||||
public enum INVOKEKIND
|
||||
{
|
||||
/// <summary>The member is called using a normal function invocation syntax.</summary>
|
||||
// Token: 0x04000D56 RID: 3414
|
||||
INVOKE_FUNC = 1,
|
||||
/// <summary>The function is invoked using a normal property-access syntax.</summary>
|
||||
// Token: 0x04000D57 RID: 3415
|
||||
INVOKE_PROPERTYGET,
|
||||
/// <summary>The function is invoked using a property value assignment syntax.</summary>
|
||||
// Token: 0x04000D58 RID: 3416
|
||||
INVOKE_PROPERTYPUT = 4,
|
||||
/// <summary>The function is invoked using a property reference assignment syntax.</summary>
|
||||
// Token: 0x04000D59 RID: 3417
|
||||
INVOKE_PROPERTYPUTREF = 8
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user