Implemented interface member:
property
CallingConvention
System.Runtime.InteropServices._MethodBase.CallingConvention
13 overrides of CallingConvention
mscorlib (10)
system\reflection\ConstructorInfo.cs (1)
528
public override CallingConventions
CallingConvention
system\reflection\emit\constructorbuilder.cs (1)
253
public override CallingConventions
CallingConvention
system\reflection\emit\dynamicmethod.cs (2)
617
public override CallingConventions
CallingConvention
{ get { return m_dynMethod.CallingConvention; } }
904
public override CallingConventions
CallingConvention
{
system\reflection\emit\methodbuilder.cs (1)
592
public override CallingConventions
CallingConvention
system\reflection\emit\methodbuilderinstantiation.cs (1)
71
public override CallingConventions
CallingConvention
{ get { return m_method.CallingConvention; } }
system\reflection\emit\symbolmethod.cs (1)
118
public override CallingConventions
CallingConvention
system\reflection\emit\xxxontypebuilderinstantiation.cs (2)
84
public override CallingConventions
CallingConvention
{ get { return m_method.CallingConvention; } }
181
public override CallingConventions
CallingConvention
{ get { return m_ctor.CallingConvention; } }
system\reflection\methodinfo.cs (1)
629
public override CallingConventions
CallingConvention
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1961
public override CallingConventions
CallingConvention
{ get { return _info.CallingConvention; } }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1961
public override CallingConventions
CallingConvention
{ get { return _info.CallingConvention; } }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1078
public override CallingConventions
CallingConvention
27 references to CallingConvention
mscorlib (21)
system\defaultbinder.cs (3)
125
if ((candidates[i].
CallingConvention
& CallingConventions.VarArgs) == 0)
342
if ((candidates[0].
CallingConvention
& CallingConventions.VarArgs) == 0)
424
if ((candidates[currentMin].
CallingConvention
& CallingConventions.VarArgs) == 0)
system\reflection\emit\customattributebuilder.cs (1)
129
if ((con.
CallingConvention
& CallingConventions.Standard) != CallingConventions.Standard)
system\reflection\emit\dynamicilgenerator.cs (2)
492
if (optionalParameterTypes != null && (methodInfo.
CallingConvention
& CallingConventions.VarArgs) == 0)
513
SignatureHelper sig = GetMemberRefSignature(methodInfo.
CallingConvention
,
system\reflection\emit\methodbuilderinstantiation.cs (1)
71
public override CallingConventions CallingConvention { get { return m_method.
CallingConvention
; } }
system\reflection\emit\modulebuilder.cs (6)
578
SignatureHelper sigHelp = SignatureHelper.GetMethodSigHelper(this, con.
CallingConvention
, null, null, null, parameterTypes, requiredCustomModifiers, optionalCustomModifiers);
676
if ((method.
CallingConvention
& CallingConventions.VarArgs) == 0)
738
byte[] sigBytes = GetMemberRefSignature(method.
CallingConvention
, returnType, parameterTypes,
1881
return GetArrayMethodToken(declaringType, method.Name, method.
CallingConvention
, method.ReturnType, tt);
1912
this, method.
CallingConvention
, method.ReturnType,
2014
if (((method.
CallingConvention
& CallingConventions.VarArgs) == 0) &&
system\reflection\emit\xxxontypebuilderinstantiation.cs (2)
84
public override CallingConventions CallingConvention { get { return m_method.
CallingConvention
; } }
181
public override CallingConventions CallingConvention { get { return m_ctor.
CallingConvention
; } }
system\reflection\methodbase.cs (1)
320
sbName.Append(ConstructParameters(GetParameterTypes(),
CallingConvention
, serialization));
system\rttype.cs (4)
2531
(methodBase.
CallingConvention
& CallingConventions.VarArgs) == 0)
2535
(methodBase.
CallingConvention
& CallingConventions.Standard) == 0)
2561
if ((methodBase.
CallingConvention
& CallingConventions.VarArgs) == 0)
5314
Contract.Assert((invokeMethod.
CallingConvention
& CallingConventions.VarArgs) ==
system\runtime\interopservices\tceadaptergen\eventsinkhelperwriter.cs (1)
108
Method.
CallingConvention
,
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1961
public override CallingConventions CallingConvention { get { return _info.
CallingConvention
; } }
System.Core (3)
Microsoft\Scripting\Ast\IndexExpression.cs (1)
404
if ((method.
CallingConvention
& CallingConventions.VarArgs) != 0) throw Error.AccessorsCannotHaveVarArgs();
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
358
if (mi.
CallingConvention
== CallingConventions.VarArgs) {
378
if (method.
CallingConvention
== CallingConventions.VarArgs) {
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1961
public override CallingConventions CallingConvention { get { return _info.
CallingConvention
; } }
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1080
get { return this.methodInfo.
CallingConvention
; }