CorBindToCurrentRuntime Function

Loads the common language runtime (CLR) into a process by using version information stored in an XML file. The format of the XML file is modeled after the standard application configuration file. For more information about configuration files, see Configuration File Schema for the .NET Framework.

This function has been deprecated in the .NET Framework version 4. See Loading the Common Language Runtime into a Process.

HRESULT CorBindToCurrentRuntime (
    [in]  LPCWSTR   pwszFileName,
    [in]  REFCLSID  rclsid,
    [in]  REFIID    riid,
    [out] LPVOID    *ppv
);

Parameters

  • pwszFileName
    [in] The name of an application configuration file that specifies the version of the CLR to load. If the file name is not fully qualified, it is assumed to be in the same directory as the executable making the call.

    The version of the runtime to be loaded is described by the version attribute in the <requiredRuntime> element of the configuration file.

    If no version is specified, or if the <requiredRuntime> element cannot be found, the latest version of the CLR that is installed on the machine is loaded.

  • rclsid
    [in] The CLSID of the coclass that implements either the ICorRuntimeHost or the ICLRRuntimeHost interface. Supported values are CLSID_CorRuntimeHost or CLSID_CLRRuntimeHost.

  • riid
    [in] The IID of the interface you are requesting. Supported values are IID_ICorRuntimeHost or IID_ICLRRuntimeHost.

  • ppv
    [out] The returned interface pointer.

Requirements

Platforms: See .NET Framework System Requirements.

Header: MSCorEE.h

Library: MSCorEE.dll

.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0

See Also

Reference

CorBindToRuntime Function

CorBindToRuntimeByCfg Function

CorBindToRuntimeEx Function

CorBindToRuntimeHost Function

ICorRuntimeHost Interface

Other Resources

.NET Framework 1.1 and 2.0 Hosting Global Static Functions