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