Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.88 KB

iclrruntimeinfo-isstarted-method.md

File metadata and controls

65 lines (47 loc) · 1.88 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: ICLRRuntimeInfo::IsStarted Method
ICLRRuntimeInfo::IsStarted Method
03/30/2017
ICLRRuntimeInfo.IsStarted
mscoree.dll
COM
ICLRRuntimeInfo::IsStarted
IsStarted method [.NET Framework hosting]
ICLRRuntimeInfo::IsStarted method [.NET Framework hosting]
ef6f2662-323b-4534-aa82-6d1afb7b9309

ICLRRuntimeInfo::IsStarted Method

Indicates whether the runtime has been started (that is, whether the ICLRRuntimeHost::Start method has been called and has succeeded).

Syntax

HRESULT IsStarted(  
        [out] BOOL     *pbStarted,  
        [out] DWORD    *pdwStartupFlags);  

Parameters

pbStarted
[out] true if this runtime is started; otherwise, false.

pdwStartupFlags
[out] Returns the flags that were used to start the runtime.

Return Value

This method returns the following specific HRESULTs as well as HRESULT errors that indicate method failure.

HRESULT Description
S_OK The method completed successfully.
E_NOTIMPL The common language runtime (CLR) version is earlier than the CLR version in the .NET Framework 4.

Remarks

This method does not work with CLR versions earlier than the CLR version in the .NET Framework 4.

Requirements

Platforms: See System Requirements.

Header: MetaHost.h

Library: Included as a resource in MSCorEE.dll

.NET Framework Versions: [!INCLUDEnet_current_v40plus]

See also