1 implementation of IsString
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
637public bool IsString(ITypeHandle 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)
4323if (!rts.IsString(th)) 4443if (rts.IsString(th)) 5476CorElementType componentType = rts.IsString(typeHandle) 5522if (rts.IsString(arrayOrStringTypeHandle)) 5541CorElementType componentType = rts.IsString(componentTypeHandle) ? CorElementType.String : rts.GetInternalCorElementType(componentTypeHandle); 6464if (rts.IsString(typeHandle))
Dbi\Helpers\HeapWalk.cs (1)
124else if (_rts.IsString(handle))
SOSDacImpl.cs (1)
2812if (contract.IsString(methodTable))