LockClrVersion Function
Allows the host to determine which version of the common language runtime (CLR) will be used within the process before explicitly initializing the CLR.
This function has been deprecated in the .NET Framework version 4.
HRESULT LockClrVersion (
[in] FLockClrVersionCallback hostCallback,
[in] FLockClrVersionCallback *pBeginHostSetup,
[in] FLockClrVersionCallback *pEndHostSetup
);
The host calls LockClrVersion before initializing the CLR. LockClrVersion takes three parameters, all of which are callbacks of type FLockClrVersionCallback. This type is defined as follows.
typedef HRESULT ( __stdcall *FLockClrVersionCallback ) ();
The following steps occur upon initialization of the runtime:
The host calls CorBindToRuntimeEx or one of the other runtime initialization functions. Alternatively, the host could initialize the runtime using COM object activation.
The runtime calls the function specified by the hostCallback parameter.
The function specified by hostCallback then makes the following sequence of calls:
The function specified by the pBeginHostSetup parameter.
CorBindToRuntimeEx (or another runtime initialization function).
The function specified by the pEndHostSetup parameter.
All the calls from pBeginHostSetup to pEndHostSetup must occur on a single thread or fiber, with the same logical stack. This thread can be different from the thread upon which hostCallback is called.
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