4 overrides of GetCustomAttributesData
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
499public override IList<CustomAttributeData> GetCustomAttributesData()
src\System\Reflection\RuntimeModule.cs (1)
378public override IList<CustomAttributeData> GetCustomAttributesData()
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();
4 references to GetCustomAttributesData
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
24return target.GetCustomAttributesData();
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
33public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
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();