C# Класс ImageGlass.Services.InstanceManagement.SingleInstance

Enforces single instance for an application.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

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

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

Listens for arguments being passed from successive instances of the applicaiton.

PassArgumentsToFirstInstance ( String arguments ) : System.Boolean

Passes the given arguments to the first running instance of the application.

SingleInstance ( System.Guid identifier ) : System

Enforces single instance for an application.

Защищенные методы

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

Приватные методы

Метод Описание
CallOnArgumentsReceived ( Object state ) : void

Calls the OnArgumentsReceived method casting the state Object to String[].

ListenForArguments ( Object state ) : void

Listens for arguments on a named pipe.

OnArgumentsReceived ( String arguments ) : void

Fires the ArgumentsReceived event.

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

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

public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

protected Dispose ( bool disposing ) : void
disposing bool
Результат void

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

Listens for arguments being passed from successive instances of the applicaiton.
public ListenForArgumentsFromSuccessiveInstances ( ) : void
Результат void

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

Passes the given arguments to the first running instance of the application.
public PassArgumentsToFirstInstance ( String arguments ) : System.Boolean
arguments String The arguments to pass.
Результат System.Boolean

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

Enforces single instance for an application.
public SingleInstance ( System.Guid identifier ) : System
identifier System.Guid An identifier unique to this application.
Результат System