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