4 overrides of GetCustomAttributesData
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
499
public override IList<CustomAttributeData>
GetCustomAttributesData
()
src\System\Reflection\RuntimeModule.cs (1)
378
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
79
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
63
public 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)
24
return target.
GetCustomAttributesData
();
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
33
public virtual IEnumerable<CustomAttributeData> CustomAttributes =>
GetCustomAttributesData
();
src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (1)
285
value = PopulateAnnotationInfo(module.
GetCustomAttributesData
());
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
81
return UnderlyingModule.
GetCustomAttributesData
();