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
파일 보기 프로젝트 열기: kamsar/Kamsar.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