3 overrides of GetCustomAttributesData
System.Private.CoreLib (1)
System\Reflection\Runtime\General\LegacyCustomAttributeApis.cs (1)
30
public sealed override IList<CustomAttributeData>
GetCustomAttributesData
() => CustomAttributes.ToReadOnlyCollection();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
55
public override IList<CustomAttributeData>
GetCustomAttributesData
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
59
public 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)
142
return 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)
301
return assembly.
GetCustomAttributesData
();
Microsoft.Extensions.DotNetDeltaApplier (1)
src\sdk\src\Dotnet.Watch\HotReloadAgent\MetadataUpdateHandlerInvoker.cs (1)
301
return 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)
113
public virtual IEnumerable<CustomAttributeData> CustomAttributes =>
GetCustomAttributesData
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (1)
31
return target.
GetCustomAttributesData
();
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
57
return UnderlyingAssembly.
GetCustomAttributesData
();
System.Xaml (1)
System\Xaml\MS\Impl\XmlNsInfo.cs (1)
131
_attributeData = Assembly.
GetCustomAttributesData
();