Method | Description | |
---|---|---|
AppendHeader ( String name, String headerValue ) : void |
Appends the header.
|
|
BinaryWrite ( Stream stream ) : void |
Writes the stream to the browser
|
|
BinaryWrite ( byte buffer ) : void |
Writes the buffer to the browser
|
|
Clear ( ) : void |
Clears the response (only works if buffered)
|
|
ClearContent ( ) : void |
Clears the response content (only works if buffered).
|
|
CreateCookie ( System.Web.HttpCookie cookie ) : void |
Creates the cookie.
|
|
CreateCookie ( String name, String cookieValue ) : void |
Creates the cookie.
|
|
CreateCookie ( String name, String cookieValue, System.DateTime expiration ) : void |
Creates the cookie.
|
|
Redirect ( String url ) : void |
Redirects the specified URL.
|
|
Redirect ( String controller, String action ) : void |
Redirects the specified controller.
|
|
Redirect ( String area, String controller, String action ) : void |
Redirects the specified area.
|
|
Redirect ( String url, bool endProcess ) : void |
Redirects the specified URL.
|
|
RemoveCookie ( string name ) : void |
Removes the cookie.
|
|
ResponseAdapter ( |
Initializes a new instance of the ResponseAdapter class.
|
|
Write ( String s ) : void |
Writes the specified string.
|
|
Write ( char ch ) : void |
Writes the specified char.
|
|
Write ( char buffer, int index, int count ) : void |
Writes the specified buffer.
|
|
Write ( object obj ) : void |
Writes the specified obj.
|
|
WriteFile ( String fileName ) : void |
Writes the file.
|
public AppendHeader ( String name, String headerValue ) : void | ||
name | String | The name. |
headerValue | String | The header value. |
return | void |
public BinaryWrite ( Stream stream ) : void | ||
stream | Stream | The stream. |
return | void |
public BinaryWrite ( byte buffer ) : void | ||
buffer | byte | The buffer. |
return | void |
public CreateCookie ( System.Web.HttpCookie cookie ) : void | ||
cookie | System.Web.HttpCookie | The cookie. |
return | void |
public CreateCookie ( String name, String cookieValue ) : void | ||
name | String | The name. |
cookieValue | String | The cookie value. |
return | void |
public CreateCookie ( String name, String cookieValue, System.DateTime expiration ) : void | ||
name | String | The name. |
cookieValue | String | The cookie value. |
expiration | System.DateTime | The expiration. |
return | void |
public Redirect ( String controller, String action ) : void | ||
controller | String | The controller. |
action | String | The action. |
return | void |
public Redirect ( String area, String controller, String action ) : void | ||
area | String | The area. |
controller | String | The controller. |
action | String | The action. |
return | void |
public Redirect ( String url, bool endProcess ) : void | ||
url | String | The URL. |
endProcess | bool | if set to |
return | void |
public RemoveCookie ( string name ) : void | ||
name | string | The name. |
return | void |
public ResponseAdapter ( |
||
response | The response. | |
context | IRailsEngineContext | The parent context. |
appPath | String | The app path. |
return | System |
public Write ( char buffer, int index, int count ) : void | ||
buffer | char | The buffer. |
index | int | The index. |
count | int | The count. |
return | void |
public WriteFile ( String fileName ) : void | ||
fileName | String | Name of the file. |
return | void |