19 references to GetCustomAttributes
Crossgen2Tasks (1)
PrepareForReadyToRunCompilation.cs (1)
523foreach (var attributeHandle in mdReader.GetAssemblyDefinition().GetCustomAttributes())
ILCompiler.Compiler (3)
Compiler\AssemblyExtensions.cs (1)
20CustomAttributeHandle attrHandle = reader.GetCustomAttributeHandle(assembly.AssemblyDefinition.GetCustomAttributes(),
Compiler\DependencyAnalysis\CustomAttributeBasedDependencyAlgorithm.cs (1)
93AddDependenciesDueToCustomAttributes(ref dependencies, GetMetadataApiDependency(factory, "ScopeDefinition"u8), factory, assembly, asmDef.GetCustomAttributes(), assembly);
Compiler\DependencyAnalysis\PInvokeMethodFixupNode.cs (1)
145var attrHandle = asm.MetadataReader.GetCustomAttributeHandle(asm.AssemblyDefinition.GetCustomAttributes(),
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Scope.cs (1)
57Ecma.CustomAttributeHandleCollection customAttributes = ecmaAssembly.AssemblyDefinition.GetCustomAttributes();
ILCompiler.ReadyToRun (1)
Compiler\AssemblyExtensions.cs (1)
24var attributeHandles = assembly.AssemblyDefinition.GetCustomAttributes();
ILCompiler.TypeSystem (7)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaAssembly.cs (1)
80return !_metadataReader.GetCustomAttributeHandle(_assemblyDefinition.GetCustomAttributes(),
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaMethod.cs (1)
498fromCA = GetImportAttributesFromBestFitMappingAttribute(metadataReader.GetAssemblyDefinition().GetCustomAttributes());
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaModule.cs (1)
803foreach (var attr in reader.GetAssemblyDefinition().GetCustomAttributes())
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaType.TypeEquivalence.cs (3)
26var attributeHandle = this.MetadataReader.GetCustomAttributeHandle(MetadataReader.GetAssemblyDefinition().GetCustomAttributes(), "System.Runtime.InteropServices", "GuidAttribute"); 85MetadataReader.GetAssemblyDefinition().GetCustomAttributes(), 91MetadataReader.GetAssemblyDefinition().GetCustomAttributes(),
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\MetadataExtensions.cs (1)
103var attributeHandles = metadataReader.GetAssemblyDefinition().GetCustomAttributes();
Microsoft.Build.Tasks.Core (2)
AssemblyDependency\AssemblyInformation.cs (1)
459foreach (var attrHandle in metadataReader.GetAssemblyDefinition().GetCustomAttributes())
ManifestUtil\MetadataReader.cs (1)
88CustomAttributeHandleCollection col = def.GetCustomAttributes();
Microsoft.NET.Build.Tasks (1)
PrepareForReadyToRunCompilation.cs (1)
550foreach (var attributeHandle in mdReader.GetAssemblyDefinition().GetCustomAttributes())
Microsoft.NET.HostModel (1)
ComHost\ClsidMap.cs (1)
139CustomAttributeHandle handle = GetComVisibleAttribute(reader, assembly.GetCustomAttributes());
System.Diagnostics.FileVersionInfo (1)
System\Diagnostics\FileVersionInfo.Unix.cs (1)
125foreach (CustomAttributeHandle attrHandle in assemblyDefinition.GetCustomAttributes())
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\Ecma\EcmaAssembly.cs (1)
42public sealed override IEnumerable<CustomAttributeData> CustomAttributes => AssemblyDefinition.GetCustomAttributes().ToTrueCustomAttributes(GetEcmaManifestModule());