5 overrides of GetCustomAttributesData
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeAssemblyBuilder.cs (1)
223
public override IList<CustomAttributeData>
GetCustomAttributesData
() =>
src\System\Reflection\RuntimeAssembly.cs (1)
349
public override IList<CustomAttributeData>
GetCustomAttributesData
()
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)
60
public sealed override IList<CustomAttributeData>
GetCustomAttributesData
() => CustomAttributes.ToReadOnlyCollection();
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
29
public override IList<CustomAttributeData>
GetCustomAttributesData
()
6 references to GetCustomAttributesData
Microsoft.AspNetCore.Components.WebAssembly (1)
HotReload\MetadataUpdateHandlerInvoker.cs (1)
194
return assembly.
GetCustomAttributesData
();
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
113
public virtual IEnumerable<CustomAttributeData> CustomAttributes =>
GetCustomAttributesData
();
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
();
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
31
return GetCustomAttributesDataResult.Or(DelegatingAssembly.
GetCustomAttributesData
);