C# Класс Castle.MonoRail.Framework.Adapters.RequestAdapter

This class adapts the HttpRequest to a MonoRail IRequest.
Наследование: IRequest
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
BinaryRead ( int count ) : byte[]

Reads the request data as a byte array.

ReadCookie ( String name ) : String

Reads the cookie.

RequestAdapter ( HttpRequest request ) : System

Initializes a new instance of the RequestAdapter class.

ValidateInput ( ) : void

Validates the input.

this ( String key ) : String

Gets the param with the specified key.

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

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

Reads the request data as a byte array.
public BinaryRead ( int count ) : byte[]
count int How many bytes.
Результат byte[]

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

Reads the cookie.
public ReadCookie ( String name ) : String
name String The cookie name.
Результат String

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

Initializes a new instance of the RequestAdapter class.
public RequestAdapter ( HttpRequest request ) : System
request System.Web.HttpRequest The request.
Результат System

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

Validates the input.
public ValidateInput ( ) : void
Результат void

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

Gets the param with the specified key.
public this ( String key ) : String
key String
Результат String