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;
6 references to IsString
Microsoft.Diagnostics.DataContractReader.Legacy (6)
Dbi\DacDbiImpl.cs (4)
3784pLayout->type = (int)(rts.IsString(typeHandle) ? CorElementType.String : rts.GetInternalCorElementType(typeHandle)); 3826if (rts.IsString(arrayOrStringTypeHandle)) 3845CorElementType componentType = rts.IsString(componentTypeHandle) ? CorElementType.String : rts.GetInternalCorElementType(componentTypeHandle); 4577if (rts.IsString(typeHandle))
Dbi\Helpers\HeapWalk.cs (1)
135else if (_rts.IsString(handle))
SOSDacImpl.cs (1)
2822if (contract.IsString(methodTable))