C# 클래스 Phun.Templating.PhunResponse

Phun response.
상속: IResponse
파일 보기 프로젝트 열기: noogen/phuncms

공개 메소드들

메소드 설명
PhunResponse ( System.Web.HttpContextBase context ) : System.Web

Initializes a new instance of the PhunResponse class.

addHeader ( string name, string value ) : void

Adds the header.

clearContent ( ) : void

Clears the content.

clearHeaders ( ) : void

Clears the header.

end ( ) : void

Ends this instance.

flush ( ) : void

Flushes this instance.

redirect ( string url ) : void

Redirects the specified URL.

write ( string chars ) : void

Writes the specified chars.

메소드 상세

PhunResponse() 공개 메소드

Initializes a new instance of the PhunResponse class.
public PhunResponse ( System.Web.HttpContextBase context ) : System.Web
context System.Web.HttpContextBase The context.
리턴 System.Web

addHeader() 공개 메소드

Adds the header.
public addHeader ( string name, string value ) : void
name string The name.
value string The value.
리턴 void

clearContent() 공개 메소드

Clears the content.
public clearContent ( ) : void
리턴 void

clearHeaders() 공개 메소드

Clears the header.
public clearHeaders ( ) : void
리턴 void

end() 공개 메소드

Ends this instance.
public end ( ) : void
리턴 void

flush() 공개 메소드

Flushes this instance.
public flush ( ) : void
리턴 void

redirect() 공개 메소드

Redirects the specified URL.
public redirect ( string url ) : void
url string The URL.
리턴 void

write() 공개 메소드

Writes the specified chars.
public write ( string chars ) : void
chars string The chars.
리턴 void