9 references to ParamArrayAttribute
mscorlib (4)
system\defaultbinder.cs (3)
155if (!par[j].IsDefined(typeof(ParamArrayAttribute), true)) 171if (!par[lastArgPos].IsDefined(typeof(ParamArrayAttribute), true)) 186&& par[lastArgPos].IsDefined(typeof(ParamArrayAttribute), true)
system\rttype.cs (1)
2609if (!lastParameter.IsDefined(typeof(ParamArrayAttribute), false))
System.Activities (2)
System\Activities\Statements\MethodExecutor.cs (1)
52return last.GetCustomAttributes(typeof(ParamArrayAttribute), true).GetLength(0) > 0;
System\Activities\Statements\MethodResolver.cs (1)
60return last.GetCustomAttributes(typeof(ParamArrayAttribute), true).Length > 0;
System.Workflow.Activities (3)
Rules\Design\Dialogs\IntellisenseTextBox.cs (1)
580object[] attrs = parameterInfo.GetCustomAttributes(typeof(ParamArrayAttribute), false);
Rules\Parser\Parser.cs (1)
2592object[] attrs = lastParm.GetCustomAttributes(typeof(ParamArrayAttribute), false);
Rules\RuleValidation.cs (1)
2977object[] attrs = lastParam.GetCustomAttributes(typeof(ParamArrayAttribute), false);