Base:
3 overrides of CustomAttributes
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\Parameters\RoFatMethodParameter.cs (1)
31
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
System\Reflection\TypeLoading\Parameters\RoPropertyIndexParameter.cs (1)
30
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
=> _backingParameter.CustomAttributes;
System\Reflection\TypeLoading\Parameters\RoThinMethodParameter.cs (1)
25
public sealed override IEnumerable<CustomAttributeData>
CustomAttributes
=> Array.Empty<CustomAttributeData>();
2 references to CustomAttributes
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Parameters\RoParameter.cs (1)
32
public sealed override IList<CustomAttributeData> GetCustomAttributesData() =>
CustomAttributes
.ToReadOnlyCollection();
System\Reflection\TypeLoading\Parameters\RoPropertyIndexParameter.cs (1)
30
public sealed override IEnumerable<CustomAttributeData> CustomAttributes => _backingParameter.
CustomAttributes
;