3 instantiations of ManifestResourceHandle
System.Reflection.Metadata (3)
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (3)
1980return new ManifestResourceHandle(rowId); 2000return new ManifestResourceHandle(handle.RowId); 2010return new ManifestResourceHandle(handle.RowId);
41 references to ManifestResourceHandle
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
440foreach (var handle in MetadataReader.ManifestResources)
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\DynamicAnalysisDataReader.cs (1)
148foreach (var resourceHandle in mdReader.ManifestResources)
System.Reflection.Metadata (36)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (2)
30/// <see cref="ManifestResourceHandle"/>, 157/// <see cref="ManifestResourceHandle"/>,
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
732/// <see cref="ManifestResourceHandle"/>, 1097public ManifestResourceHandle AddManifestResource( 1111return ManifestResourceHandle.FromRowId(_manifestResourceTable.Count); 1389/// <see cref="ManifestResourceHandle"/>,
System\Reflection\Metadata\Ecma335\MetadataTokens.cs (2)
450public static ManifestResourceHandle ManifestResourceHandle(int rowNumber) 452return Metadata.ManifestResourceHandle.FromRowId(ToRowId(rowNumber));
System\Reflection\Metadata\Internal\Tables.cs (4)
2289internal StringHandle GetName(ManifestResourceHandle handle) 2295internal EntityHandle GetImplementation(ManifestResourceHandle handle) 2301internal uint GetOffset(ManifestResourceHandle handle) 2307internal ManifestResourceAttributes GetFlags(ManifestResourceHandle handle)
System\Reflection\Metadata\MetadataReader.cs (1)
1293public ManifestResource GetManifestResource(ManifestResourceHandle handle)
System\Reflection\Metadata\TypeSystem\HandleCollections.TypeSystem.cs (7)
1763/// Represents a collection of <see cref="ManifestResourceHandle"/>. 1765public readonly struct ManifestResourceHandleCollection : IReadOnlyCollection<ManifestResourceHandle> 1785IEnumerator<ManifestResourceHandle> IEnumerable<ManifestResourceHandle>.GetEnumerator() 1795public struct Enumerator : IEnumerator<ManifestResourceHandle>, IEnumerator 1812public ManifestResourceHandle Current 1816return ManifestResourceHandle.FromRowId((int)(_currentRowId & TokenTypeIds.RIDMask));
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (13)
1966public readonly struct ManifestResourceHandle : IEquatable<ManifestResourceHandle> 1978internal static ManifestResourceHandle FromRowId(int rowId) 1983public static implicit operator Handle(ManifestResourceHandle handle) 1988public static implicit operator EntityHandle(ManifestResourceHandle handle) 1993public static explicit operator ManifestResourceHandle(Handle handle) 2003public static explicit operator ManifestResourceHandle(EntityHandle handle) 2023public static bool operator ==(ManifestResourceHandle left, ManifestResourceHandle right) 2030return obj is ManifestResourceHandle && ((ManifestResourceHandle)obj)._rowId == _rowId; 2033public bool Equals(ManifestResourceHandle other) 2043public static bool operator !=(ManifestResourceHandle left, ManifestResourceHandle right)
System\Reflection\Metadata\TypeSystem\ManifestResource.cs (3)
15internal ManifestResource(MetadataReader reader, ManifestResourceHandle handle) 24private ManifestResourceHandle Handle 26get { return ManifestResourceHandle.FromRowId(_rowId); }
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\Assemblies\Ecma\EcmaAssembly.ManifestResources.cs (1)
50foreach (ManifestResourceHandle resourceHandle in manifestResources)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
39public static ManifestResource GetManifestResource(this ManifestResourceHandle handle, MetadataReader reader) => reader.GetManifestResource(handle);
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.ManifestResources.cs (1)
20foreach (ManifestResourceHandle resourceHandle in manifestResources)