5 instantiations of ModuleDefinitionHandle
System.Reflection.Metadata (5)
System\Reflection\Metadata\EntityHandle.cs (1)
131public static readonly ModuleDefinitionHandle ModuleDefinition = new ModuleDefinitionHandle(1);
System\Reflection\Metadata\Handle.cs (1)
196public static readonly ModuleDefinitionHandle ModuleDefinition = new ModuleDefinitionHandle(1);
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (3)
24return new ModuleDefinitionHandle(rowId); 44return new ModuleDefinitionHandle(handle.RowId); 54return new ModuleDefinitionHandle(handle.RowId);
22 references to ModuleDefinitionHandle
System.Reflection.Emit (1)
System\Reflection\Emit\ModuleBuilderImpl.cs (1)
120ModuleDefinitionHandle moduleHandle = _metadataBuilder.AddModule(
System.Reflection.Metadata (21)
System\Reflection\Metadata\Ecma335\CodedIndex.cs (3)
19/// <see cref="ModuleDefinitionHandle"/>, 110/// <param name="handle"><see cref="ModuleDefinitionHandle"/>, <see cref="ModuleReferenceHandle"/>, <see cref="AssemblyReferenceHandle"/> or <see cref="TypeReferenceHandle"/></param> 146/// <see cref="ModuleDefinitionHandle"/>,
System\Reflection\Metadata\Ecma335\MetadataBuilder.Tables.cs (4)
358public ModuleDefinitionHandle AddModule( 561/// <see cref="ModuleDefinitionHandle"/>, <see cref="ModuleReferenceHandle"/>, <see cref="AssemblyReferenceHandle"/>, <see cref="TypeReferenceHandle"/>, or nil. 721/// <see cref="ModuleDefinitionHandle"/>, 1378/// <see cref="ModuleDefinitionHandle"/>,
System\Reflection\Metadata\EntityHandle.cs (1)
131public static readonly ModuleDefinitionHandle ModuleDefinition = new ModuleDefinitionHandle(1);
System\Reflection\Metadata\Handle.cs (1)
196public static readonly ModuleDefinitionHandle ModuleDefinition = new ModuleDefinitionHandle(1);
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (12)
10public readonly struct ModuleDefinitionHandle : IEquatable<ModuleDefinitionHandle> 22internal static ModuleDefinitionHandle FromRowId(int rowId) 27public static implicit operator Handle(ModuleDefinitionHandle handle) 32public static implicit operator EntityHandle(ModuleDefinitionHandle handle) 37public static explicit operator ModuleDefinitionHandle(Handle handle) 47public static explicit operator ModuleDefinitionHandle(EntityHandle handle) 67public static bool operator ==(ModuleDefinitionHandle left, ModuleDefinitionHandle right) 74return obj is ModuleDefinitionHandle moduleDefinition && moduleDefinition._rowId == _rowId; 77public bool Equals(ModuleDefinitionHandle other) 87public static bool operator !=(ModuleDefinitionHandle left, ModuleDefinitionHandle right)