C# 클래스 Castle.MonoRail.Framework.Adapters.RequestAdapter

This class adapts the HttpRequest to a MonoRail IRequest.
상속: IRequest
파일 보기 프로젝트 열기: nats/castle-1.0.3-mono 1 사용 예제들

공개 메소드들

메소드 설명
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