Base:
7 overrides of CustomAttributes
System.Reflection.MetadataLoadContext (7)
System\Reflection\TypeLoading\Types\Ecma\EcmaGenericParameterType.cs (1)
33public sealed override IEnumerable<CustomAttributeData> CustomAttributes => GenericParameter.GetCustomAttributes().ToTrueCustomAttributes(GetEcmaModule());
System\Reflection\TypeLoading\Types\RoConstructedGenericType.cs (1)
109public sealed override IEnumerable<CustomAttributeData> CustomAttributes => _genericTypeDefinition.CustomAttributes;
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
61public sealed override IEnumerable<CustomAttributeData> CustomAttributes
System\Reflection\TypeLoading\Types\RoFunctionPointerType.cs (1)
175public sealed override IEnumerable<CustomAttributeData> CustomAttributes => Array.Empty<CustomAttributeData>();
System\Reflection\TypeLoading\Types\RoHasElementType.cs (1)
54public sealed override IEnumerable<CustomAttributeData> CustomAttributes => Array.Empty<CustomAttributeData>();
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
161public override IEnumerable<CustomAttributeData> CustomAttributes => _unmodifiedType.CustomAttributes;
System\Reflection\TypeLoading\Types\RoStubType.cs (1)
48public sealed override IEnumerable<CustomAttributeData> CustomAttributes => throw null!;
2 references to CustomAttributes
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoModifiedType.cs (1)
161public override IEnumerable<CustomAttributeData> CustomAttributes => _unmodifiedType.CustomAttributes;
System\Reflection\TypeLoading\Types\RoType.cs (1)
151public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();