34 references to VarArgs
mscorlib (31)
system\defaultbinder.cs (3)
125if ((candidates[i].CallingConvention & CallingConventions.VarArgs) == 0) 342if ((candidates[0].CallingConvention & CallingConventions.VarArgs) == 0) 424if ((candidates[currentMin].CallingConvention & CallingConventions.VarArgs) == 0)
system\reflection\callingconventions.cs (1)
29Any = Standard | VarArgs,
system\reflection\ConstructorInfo.cs (4)
225((CallingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs) || 584CheckCanCreateInstance(DeclaringType, (CallingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs);
system\reflection\emit\dynamicilgenerator.cs (2)
243if ((callingConvention & CallingConventions.VarArgs) == 0) 492if (optionalParameterTypes != null && (methodInfo.CallingConvention & CallingConventions.VarArgs) == 0)
system\reflection\emit\dynamicmethod.cs (4)
281if (callingConvention != CallingConventions.Standard && callingConvention != CallingConventions.VarArgs) 285if (callingConvention == CallingConventions.VarArgs) 715if ((CallingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs)
system\reflection\emit\ilgenerator.cs (1)
525if ((callingConvention & CallingConventions.VarArgs) == 0)
system\reflection\emit\modulebuilder.cs (2)
676if ((method.CallingConvention & CallingConventions.VarArgs) == 0) 2014if (((method.CallingConvention & CallingConventions.VarArgs) == 0) &&
system\reflection\emit\signaturehelper.cs (2)
83if ((callingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs)
system\reflection\methodbase.cs (2)
293if ((callingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs)
system\reflection\methodinfo.cs (4)
201((CallingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs) || 683else if ((CallingConvention & CallingConventions.VarArgs) == CallingConventions.VarArgs)
system\rttype.cs (6)
2530if ((callConv & CallingConventions.VarArgs) != 0 && 2531(methodBase.CallingConvention & CallingConventions.VarArgs) == 0) 2561if ((methodBase.CallingConvention & CallingConventions.VarArgs) == 0) 2569Contract.Assert((callConv & CallingConventions.VarArgs) != 0); 5314Contract.Assert((invokeMethod.CallingConvention & CallingConventions.VarArgs) == 5315CallingConventions.VarArgs);
System.Core (3)
Microsoft\Scripting\Ast\IndexExpression.cs (1)
404if ((method.CallingConvention & CallingConventions.VarArgs) != 0) throw Error.AccessorsCannotHaveVarArgs();
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
358if (mi.CallingConvention == CallingConventions.VarArgs) { 378if (method.CallingConvention == CallingConventions.VarArgs) {