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