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