16 references to RuntimeTypeHandle
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
30get => new RuntimeTypeHandle(this);
src\System\Runtime\InteropServices\DynamicInterfaceCastableHelpers.cs (2)
18bool isImplemented = castable.IsInterfaceImplemented(new RuntimeTypeHandle(interfaceType), throwIfNotImplemented); 28RuntimeTypeHandle handle = castable.GetInterfaceImplementation(new RuntimeTypeHandle(interfaceType));
src\System\RuntimeHandles.cs (3)
22new RuntimeTypeHandle(GetRuntimeTypeChecked()); 34new RuntimeTypeHandle(GetRuntimeTypeFromHandleMaybeNull(value)); 1849return new RuntimeTypeHandle(type!);
src\System\RuntimeType.CoreCLR.cs (10)
1438name = new RuntimeTypeHandle(m_runtimeType).ConstructName(formatFlags); 2429RuntimeTypeHandle th = new RuntimeTypeHandle(this); 3566return new RuntimeTypeHandle(this).Instantiate(rt); 3609ret = new RuntimeTypeHandle(this).Instantiate(instantiationRuntimeType); 3627return new RuntimeTypeHandle(this).GetGenericVariableIndex(); 3639Type[] constraints = new RuntimeTypeHandle(this).GetConstraints(); 3666public override Type MakePointerType() => new RuntimeTypeHandle(this).MakePointer(); 3668public override Type MakeByRefType() => new RuntimeTypeHandle(this).MakeByRef(); 3670public override Type MakeArrayType() => new RuntimeTypeHandle(this).MakeSZArray(); 3677return new RuntimeTypeHandle(this).MakeArray(rank);