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

            return(hr == S_OK);
        }
Exemplo n.º 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);
        }