21 references to RuntimeTypeHandle
mscorlib (21)
system\argiterator.cs (1)
129return new RuntimeTypeHandle(Type.GetTypeFromHandleUnsafe((IntPtr)_GetNextArgType()));
system\rttype.cs (14)
1609name = new RuntimeTypeHandle(m_runtimeType).ConstructName(formatFlags); 2747IntPtr newgcHandle = new RuntimeTypeHandle(this).GetGCHandle(GCHandleType.WeakTrackResurrection); 3572return new RuntimeTypeHandle(this); 3579return new RuntimeTypeHandle(this); 4017get { return new RuntimeTypeHandle(this).IsSecurityCritical(); } 4021get { return new RuntimeTypeHandle(this).IsSecuritySafeCritical(); } 4025get { return new RuntimeTypeHandle(this).IsSecurityTransparent(); } 4243ret = new RuntimeTypeHandle(this).Instantiate(instantiationRuntimeType); 4272return new RuntimeTypeHandle(this).GetGenericVariableIndex(); 4306Type[] constraints = new RuntimeTypeHandle(this).GetConstraints(); 4317public override Type MakePointerType() { return new RuntimeTypeHandle(this).MakePointer(); } 4318public override Type MakeByRefType() { return new RuntimeTypeHandle(this).MakeByRef(); } 4319public override Type MakeArrayType() { return new RuntimeTypeHandle(this).MakeSZArray(); } 4326return new RuntimeTypeHandle(this).MakeArray(rank);
system\runtimehandles.cs (5)
39return new RuntimeTypeHandle(type); 101return new RuntimeTypeHandle(null); 481return _IsVisible(new RuntimeTypeHandle(type)); 1915return new RuntimeTypeHandle(ResolveTypeHandleInternal(GetRuntimeModule(), typeToken, null, null)); 1919return new RuntimeTypeHandle(ModuleHandle.ResolveTypeHandleInternal(GetRuntimeModule(), typeToken, typeInstantiationContext, methodInstantiationContext));
system\type.cs (1)
350return new RuntimeTypeHandle((RuntimeType)o.GetType());