1 implementation of IsValueType
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1162public bool IsValueType(ITypeHandle 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)
53public bool IsValueType() => _typeHandle is not null && Rts.IsValueType(_typeHandle); 178if (Arch != RuntimeInfoArchitecture.X86 || _typeHandle is null || !Rts.IsValueType(_typeHandle))
Contracts\ManagedTypeSource_1.cs (1)
217bool isValueType = rts.IsValueType(th);
Microsoft.Diagnostics.DataContractReader.Legacy (2)
Dbi\DacDbiImpl.cs (1)
2973*pResult = rts.IsValueType(th) ? Interop.BOOL.TRUE : Interop.BOOL.FALSE;
Dbi\TypeDataWalk.cs (1)
169if ((typeDef is not null && _rts.IsValueType(typeDef)) || et == CorElementType.ValueType)