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