1 implementation of IsString
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
586public bool IsString(TypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.IsString;
9 references to IsString
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\GC\GcScanContext.cs (1)
182else if (_rts.IsString(handle))
Microsoft.Diagnostics.DataContractReader.Legacy (8)
Dbi\DacDbiImpl.cs (6)
3579if (!rts.IsString(th)) 3699if (rts.IsString(th)) 4713CorElementType componentType = rts.IsString(typeHandle) 4759if (rts.IsString(arrayOrStringTypeHandle)) 4778CorElementType componentType = rts.IsString(componentTypeHandle) ? CorElementType.String : rts.GetInternalCorElementType(componentTypeHandle); 5686if (rts.IsString(typeHandle))
Dbi\Helpers\HeapWalk.cs (1)
124else if (_rts.IsString(handle))
SOSDacImpl.cs (1)
2806if (contract.IsString(methodTable))