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