C# Класс Kamsar.WebConsole.RemoteWebConsole

A WebConsole "API" that sends the raw console command scripts only. The RemoteWebConsoleReceiver is a type of console specialized to receive these remote scripts. You can use this to "syndicate" a console's output from a remote service into another application.
Наследование: WebConsole
Показать файл Открыть проект

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

Метод Описание
RemoteWebConsole ( HttpResponse response ) : System.Web
RemoteWebConsole ( System.Web.HttpResponseBase response ) : System.Web
WriteRemoteSignal ( string signalContent ) : void

Sends a "signal" to the console receiver. Signals are stored in a collection and can be reviewed. For example a signal to perform a redirect might be used for when a process succeeds or fails.

WriteScript ( string script ) : void

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

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

public RemoteWebConsole ( HttpResponse response ) : System.Web
response System.Web.HttpResponse
Результат System.Web

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

public RemoteWebConsole ( System.Web.HttpResponseBase response ) : System.Web
response System.Web.HttpResponseBase
Результат System.Web

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

Sends a "signal" to the console receiver. Signals are stored in a collection and can be reviewed. For example a signal to perform a redirect might be used for when a process succeeds or fails.
public WriteRemoteSignal ( string signalContent ) : void
signalContent string
Результат void

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

public WriteScript ( string script ) : void
script string
Результат void