2 overrides of GetCustomAttributes
System.Composition.Convention (1)
System\Composition\Convention\ConventionBuilder.cs (1)
284
public override IEnumerable<Attribute>
GetCustomAttributes
(Type reflectedType, System.Reflection.ParameterInfo parameter)
System.Composition.TypedParts (1)
System\Composition\TypedParts\Util\DirectAttributeContext.cs (1)
23
public override IEnumerable<Attribute>
GetCustomAttributes
(Type reflectedType, Reflection.ParameterInfo parameter)
3 references to GetCustomAttributes
System.Composition.TypedParts (3)
System\Composition\Convention\AttributedModelProviderExtensions.cs (3)
31
return convention.
GetCustomAttributes
(reflectedType, parameter).OfType<TAttribute>().SingleOrDefault();
36
return convention.
GetCustomAttributes
(reflectedType, parameter).OfType<Attribute>().ToArray();
41
return convention.
GetCustomAttributes
(reflectedType, parameter).OfType<TAttribute>().ToArray();