C# Класс Dev2.Studio.Core.AppResources.Browsers.Dev2RequestHandler

Handler for posting via a GET method.
Наследование: IDisposable
Показать файл Открыть проект

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

Метод Описание
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