C# Класс Cimbalino.Phone.Toolkit.Helpers.MutexLock

Allows for inter-process locking and synchronization.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Dispose ( ) : void

Releases the resources allocated by this MutexLock instance.

Lock ( ) : IDisposable

Locks the Mutex and returns an IDisposable object that when disposed will release the Mutex.

MutexLock ( string name ) : System

Initializes a new instance of the MutexLock class.

Описание методов

Dispose() публичный Метод

Releases the resources allocated by this MutexLock instance.
public Dispose ( ) : void
Результат void

Lock() публичный Метод

Locks the Mutex and returns an IDisposable object that when disposed will release the Mutex.
public Lock ( ) : IDisposable
Результат IDisposable

MutexLock() публичный Метод

Initializes a new instance of the MutexLock class.
public MutexLock ( string name ) : System
name string The name of the Mutex.
Результат System