1 implementation of GetCanonicalMethodTable
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
545public TargetPointer GetCanonicalMethodTable(TypeHandle typeHandle) => !typeHandle.IsMethodTable() ? TargetPointer.Null : GetClassData(typeHandle).MethodTable;
3 references to GetCanonicalMethodTable
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (1)
3496TargetPointer canonMT = rts.GetCanonicalMethodTable(th);
SOSDacImpl.cs (1)
2832result.klass = contract.GetCanonicalMethodTable(methodTable).ToClrDataAddress(_target);
SOSDacImpl.IXCLRDataProcess.cs (1)
399TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam);