Base:
4 overrides of CustomAttributes
System.Reflection.MetadataLoadContext (4)
System\Reflection\TypeLoading\General\Sentinels.cs (1)
33
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
=> throw null!;
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
33
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
=> _genericMethodDefinition.CustomAttributes;
System\Reflection\TypeLoading\Methods\RoDefinitionMethod.cs (1)
50
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
System\Reflection\TypeLoading\Methods\RoSyntheticMethod.cs (1)
37
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
=> Array.Empty<CustomAttributeData>();
2 references to CustomAttributes
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Methods\RoConstructedGenericMethod.cs (1)
33
public sealed override IEnumerable<CustomAttributeData> CustomAttributes => _genericMethodDefinition.
CustomAttributes
;
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
43
public sealed override IList<CustomAttributeData> GetCustomAttributesData() =>
CustomAttributes
.ToReadOnlyCollection();