1 implementation of IsValueType
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
1162
public bool
IsValueType
(ITypeHandle typeHandle)
6 references to IsValueType
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CallingConvention\CallingConvention_1.cs (1)
152
bool isValueTypeThis = rts.
IsValueType
(owningType) && !rts.IsUnboxingStub(methodDesc);
Contracts\CallingConvention\CdacTypeHandle.cs (2)
53
public bool IsValueType() => _typeHandle is not null && Rts.
IsValueType
(_typeHandle);
178
if (Arch != RuntimeInfoArchitecture.X86 || _typeHandle is null || !Rts.
IsValueType
(_typeHandle))
Contracts\ManagedTypeSource_1.cs (1)
217
bool 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)
169
if ((typeDef is not null && _rts.
IsValueType
(typeDef)) || et == CorElementType.ValueType)