Implemented interface member:
method
IsDefined
System.Reflection.ICustomAttributeProvider.IsDefined(System.Type, System.Boolean)
3 overrides of IsDefined
mscorlib (1)
system\reflection\parameterinfo.cs (1)
755public override bool IsDefined(Type attributeType, bool inherit)
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1266public override bool IsDefined(Type attributeType, bool inherit)
System.WorkflowServices (1)
System\Workflow\Activities\ContractMethodParameterInfo.cs (1)
84public override bool IsDefined(Type attributeType, bool inherit)
8 references to IsDefined
mscorlib (7)
system\attribute.cs (3)
338if (param.IsDefined(type, false)) 633return element.IsDefined(attributeType, false); 636return element.IsDefined(attributeType, false);
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.Workflow.ComponentModel (1)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1268return this.paramInfo.IsDefined(attributeType, inherit);