mscorlib(4.0.0.0) API with additions
CallingConventions.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum CallingConventions
11  {
13  [__DynamicallyInvokable]
14  Standard = 0x1,
16  [__DynamicallyInvokable]
17  VarArgs = 0x2,
19  [__DynamicallyInvokable]
20  Any = 0x3,
22  [__DynamicallyInvokable]
23  HasThis = 0x20,
25  [__DynamicallyInvokable]
26  ExplicitThis = 0x40
27  }
28 }
Specifies the default calling convention as determined by the common language runtime....
Definition: __Canon.cs:3
Specifies that the signature is a function-pointer signature, representing a call to an instance or v...
CallingConventions
Defines the valid calling conventions for a method.
Specifies an instance or virtual method (not a static method). At run-time, the called method is pass...
Specifies that the class can be serialized.
Specifies the calling convention for methods with variable arguments.