C# 클래스 Dev2.Studio.Core.AppResources.Browsers.Dev2RequestHandler

Handler for posting via a GET method.
상속: IDisposable
파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf

공개 메소드들

메소드 설명
Dispose ( ) : void
GetData ( int requestID ) : string

Gets the post data for the request ID. Post data must be set previously by invoking SetData.

GetData ( int requestID, Uri requestUri, string requestMethod ) : string

Gets the post data for requestUri that have a query containing method=post. Post data must be set previously by invoking SetData.

SetData ( int requestID, string postData ) : void

Sets the data prior to invoking GetData(int, Uri, string).

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

GetData() 공개 메소드

Gets the post data for the request ID. Post data must be set previously by invoking SetData.
public GetData ( int requestID ) : string
requestID int The request ID - usually the process ID of the request.
리턴 string

GetData() 공개 메소드

Gets the post data for requestUri that have a query containing method=post. Post data must be set previously by invoking SetData.
public GetData ( int requestID, Uri requestUri, string requestMethod ) : string
requestID int The request ID - usually the process ID of the request.
requestUri System.Uri The request URI.
requestMethod string The request method - usually POST or GET.
리턴 string

SetData() 공개 메소드

Sets the data prior to invoking GetData(int, Uri, string).
public SetData ( int requestID, string postData ) : void
requestID int The request ID - usually the process ID of the request.
postData string The post data for the GET request.
리턴 void