5 overrides of GetCustomAttributesData
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeAssemblyBuilder.cs (1)
223public override IList<CustomAttributeData> GetCustomAttributesData() =>
src\System\Reflection\RuntimeAssembly.cs (1)
349public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
55public override IList<CustomAttributeData> GetCustomAttributesData()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
60public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
29public override IList<CustomAttributeData> GetCustomAttributesData()
6 references to GetCustomAttributesData
Microsoft.AspNetCore.Components.WebAssembly (1)
HotReload\MetadataUpdateHandlerInvoker.cs (1)
194return assembly.GetCustomAttributesData();
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
113public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
31return target.GetCustomAttributesData();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
57return UnderlyingAssembly.GetCustomAttributesData();
System.Xaml (1)
System\Xaml\MS\Impl\XmlNsInfo.cs (1)
131_attributeData = Assembly.GetCustomAttributesData();
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
31return GetCustomAttributesDataResult.Or(DelegatingAssembly.GetCustomAttributesData);