Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Serves as the host's representation of a critical section for threading.
interface IHostCrst : IUnknown {
HRESULT Enter (
[in] DWORD option
);
HRESULT Leave ();
HRESULT SetSpinCount (
[in] DWORD dwSpinCount
);
HRESULT TryEnter (
[in] DWORD option,
[out] BOOL *pbSucceeded
);
};
Methods
Method |
Description |
|---|---|
Enters the critical section. |
|
Leaves the critical section. |
|
Sets the spin count for the critical section. |
|
Attempts to enter the critical section, and reports success or failure immediately. |
Remarks
IHostCrst allows the common language runtime (CLR) to communicate directly with the host's representation of a critical section, rather than using Win32 functions such as EnterCriticalSection or LeaveCriticalSection.
Requirements
Platforms: See .NET Framework System Requirements.
Header: MSCorEE.idl
Library: Included as a resource in MSCorEE.dll
.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0