C# Class ALE.Web.AleResponse

Inheritance: IResponse
Datei anzeigen Open project: blesh/ALE Class Usage Examples

Public Properties

Property Type Description
InnerResponse System.Web.HttpResponse

Public Methods

Method Description
AddHeader ( string name, string value ) : void
AleResponse ( HttpResponse innerResponse, IContext context ) : System
AppendCookie ( Cookie cookie ) : void
AppendHeader ( string name, string value ) : void
Redirect ( string location ) : void
Render ( string view, object model, Action callback ) : IResponse
Send ( ) : void
Write ( byte binary ) : IResponse
Write ( string text ) : IResponse

Method Details

AddHeader() public method

public AddHeader ( string name, string value ) : void
name string
value string
return void

AleResponse() public method

public AleResponse ( HttpResponse innerResponse, IContext context ) : System
innerResponse System.Web.HttpResponse
context IContext
return System

AppendCookie() public method

public AppendCookie ( Cookie cookie ) : void
cookie System.Net.Cookie
return void

AppendHeader() public method

public AppendHeader ( string name, string value ) : void
name string
value string
return void

Redirect() public method

public Redirect ( string location ) : void
location string
return void

Render() public method

public Render ( string view, object model, Action callback ) : IResponse
view string
model object
callback Action
return IResponse

Send() public method

public Send ( ) : void
return void

Write() public method

public Write ( byte binary ) : IResponse
binary byte
return IResponse

Write() public method

public Write ( string text ) : IResponse
text string
return IResponse

Property Details

InnerResponse public_oe property

public HttpResponse,System.Web InnerResponse
return System.Web.HttpResponse