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