3 overrides of GetCustomAttributesData
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
145public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
79public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
63public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
5 references to GetCustomAttributesData
Microsoft.Extensions.AI.Abstractions (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\LegacySupport\NullabilityInfoContext\NullabilityInfoContext.cs (1)
283value = PopulateAnnotationInfo(module.GetCustomAttributesData());
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
24return target.GetCustomAttributesData();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
33public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (1)
285value = PopulateAnnotationInfo(module.GetCustomAttributesData());
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
81return UnderlyingModule.GetCustomAttributesData();