3 overrides of GetCustomAttributesData
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
30public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
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)
59public sealed override IList<CustomAttributeData> GetCustomAttributesData() => CustomAttributes.ToReadOnlyCollection();
10 references to GetCustomAttributesData
Aspire.TypeSystem (1)
AttributeDataReader.cs (1)
44=> FindAllAttributes(assembly.GetCustomAttributesData(), AspireExportAttributeFullName, ParseAspireExportData);
dotnet (1)
Commands\Run\CSharpCompilerCommand.cs (1)
142return typeof(CSharpCompilation).Assembly.GetCustomAttributesData()
Microsoft.Build (1)
src\msbuild\src\Shared\TypeLoader.cs (1)
621.GetCustomAttributesData()?
Microsoft.DotNet.HotReload.WebAssembly.Browser (1)
src\sdk\src\Dotnet.Watch\HotReloadAgent\MetadataUpdateHandlerInvoker.cs (1)
301return assembly.GetCustomAttributesData();
Microsoft.Extensions.DotNetDeltaApplier (1)
src\sdk\src\Dotnet.Watch\HotReloadAgent\MetadataUpdateHandlerInvoker.cs (1)
301return assembly.GetCustomAttributesData();
MSBuild (1)
src\msbuild\src\Shared\TypeLoader.cs (1)
621.GetCustomAttributesData()?
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
113public virtual IEnumerable<CustomAttributeData> CustomAttributes => GetCustomAttributesData();
src\runtime\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();