HRESULT STDMETHODCALLTYPE CorProfiler::Shutdown()

in ProfilingAPI/ELTProfiler/CorProfiler.cpp [121:130]


HRESULT STDMETHODCALLTYPE CorProfiler::Shutdown()
{
    if (this->corProfilerInfo != nullptr)
    {
        this->corProfilerInfo->Release();
        this->corProfilerInfo = nullptr;
    }

    return S_OK;
}