public bool GetWorkstationGCHeapDetails(out NativeHeapDetails details) { InitDelegate(ref _getGCHeapStaticData, VTable->GetGCHeapStaticData); int hr = _getGCHeapStaticData(Self, out details); return(hr == S_OK); }
public bool GetServerGCHeapDetails(ulong heap, out NativeHeapDetails details) { InitDelegate(ref _getGCHeapDetails, VTable->GetGCHeapDetails); int hr = _getGCHeapDetails(Self, heap, out details); return(hr == S_OK); }