Beispiel #1
0
        public bool GetWorkstationGCHeapDetails(out NativeHeapDetails details)
        {
            InitDelegate(ref _getGCHeapStaticData, VTable->GetGCHeapStaticData);
            int hr = _getGCHeapStaticData(Self, out details);

            return(hr == S_OK);
        }
Beispiel #2
0
        public bool GetServerGCHeapDetails(ulong heap, out NativeHeapDetails details)
        {
            InitDelegate(ref _getGCHeapDetails, VTable->GetGCHeapDetails);
            int hr = _getGCHeapDetails(Self, heap, out details);

            return(hr == S_OK);
        }