using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Defines the valid calling conventions for a method.
// Token: 0x02000237 RID: 567
[Flags]
[ComVisible(true)]
[Serializable]
public enum CallingConventions
{
/// Specifies the default calling convention as determined by the common language runtime. Use this calling convention for static methods. For instance or virtual methods use HasThis.
// Token: 0x04000A1A RID: 2586
Standard = 1,
/// Specifies the calling convention for methods with variable arguments.
// Token: 0x04000A1B RID: 2587
VarArgs = 2,
/// Specifies that either the Standard or the VarArgs calling convention may be used.
// Token: 0x04000A1C RID: 2588
Any = 3,
/// Specifies an instance or virtual method (not a static method). At run-time, the called method is passed a pointer to the target object as its first argument (the this pointer). The signature stored in metadata does not include the type of this first argument, because the method is known and its owner class can be discovered from metadata.
// Token: 0x04000A1D RID: 2589
HasThis = 32,
/// Specifies that the signature is a function-pointer signature, representing a call to an instance or virtual method (not a static method). If ExplicitThis is set, HasThis must also be set. The first argument passed to the called method is still a this pointer, but the type of the first argument is now unknown. Therefore, a token that describes the type (or class) of the this pointer is explicitly stored into its metadata signature.
// Token: 0x04000A1E RID: 2590
ExplicitThis = 64
}
}