C# 클래스 Cimbalino.Phone.Toolkit.Helpers.MutexLock

Allows for inter-process locking and synchronization.
상속: IDisposable
파일 보기 프로젝트 열기: Cimbalino/Cimbalino-Phone-Toolkit 1 사용 예제들

공개 메소드들

메소드 설명
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