1 implementation of IsValueType
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1102public bool IsValueType(TypeHandle typeHandle)
6 references to IsValueType
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CallingConvention\CallingConvention_1.cs (1)
152bool isValueTypeThis = rts.IsValueType(owningType) && !rts.IsUnboxingStub(methodDesc);
Contracts\CallingConvention\CdacTypeHandle.cs (2)
52public bool IsValueType() => !_typeHandle.IsNull && Rts.IsValueType(_typeHandle); 139if (Arch != RuntimeInfoArchitecture.X86 || _typeHandle.IsNull || !Rts.IsValueType(_typeHandle))
Contracts\ManagedTypeSource_1.cs (1)
209bool isValueType = rts.IsValueType(th);
Microsoft.Diagnostics.DataContractReader.Legacy (2)
Dbi\DacDbiImpl.cs (1)
2222*pResult = rts.IsValueType(th) ? Interop.BOOL.TRUE : Interop.BOOL.FALSE;
Dbi\TypeDataWalk.cs (1)
171if ((!typeDef.IsNull && _rts.IsValueType(typeDef)) || et == CorElementType.ValueType)