Implemented interface member:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
2 overrides of GetCustomAttributes
mscorlib (1)
system\reflection\parameterinfo.cs (1)
737
public override Object[]
GetCustomAttributes
(Type attributeType, bool inherit)
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
69
public override object[]
GetCustomAttributes
(Type attributeType, bool inherit)
11 references to GetCustomAttributes
mscorlib (5)
system\attribute.cs (5)
254
objAttr = param.
GetCustomAttributes
(type, false);
281
objAttr = baseParam.
GetCustomAttributes
(type, false);
348
Object[] objAttr = baseParam.
GetCustomAttributes
(type, false);
587
return element.
GetCustomAttributes
(attributeType, inherit) as Attribute[];
604
return element.
GetCustomAttributes
(typeof(Attribute), inherit) as Attribute[];
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.Web (1)
UI\WebControls\ModelDataSourceView.cs (1)
1087
object[] valueProviderAttributes = parameterInfo.
GetCustomAttributes
(typeof(IValueProviderSource), false);
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);