2 overrides of GetCustomAttributes
System.Composition.Convention (1)
System\Composition\Convention\ConventionBuilder.cs (1)
159
public override IEnumerable<Attribute>
GetCustomAttributes
(Type reflectedType, System.Reflection.MemberInfo member)
System.Composition.TypedParts (1)
System\Composition\TypedParts\Util\DirectAttributeContext.cs (1)
12
public override IEnumerable<Attribute>
GetCustomAttributes
(Type reflectedType, Reflection.MemberInfo member)
3 references to GetCustomAttributes
System.Composition.TypedParts (3)
System\Composition\Convention\AttributedModelProviderExtensions.cs (3)
16
return convention.
GetCustomAttributes
(reflectedType, member).OfType<TAttribute>().SingleOrDefault();
21
return convention.
GetCustomAttributes
(reflectedType, member).ToArray();
26
return convention.
GetCustomAttributes
(reflectedType, member).OfType<TAttribute>().ToArray();