Method | Description | |
---|---|---|
Dispose ( ) : void |
Disposes of resources used by this instance.
|
|
ProcessRequest ( |
Enables processing of HTTP Web requests by a custom HttpHandler that implements the IHttpHandler interface.
|
|
ProcessRequest ( System.Web.HttpContextBase context ) : void |
Enables processing of HTTP Web requests by a custom HttpHandler that implements the IHttpHandler interface.
|
Method | Description | |
---|---|---|
BadRequest ( ) : void |
Throws a 400 HttpException.
|
|
DashboardHandlerBase ( IRepositoryFactory repositoryFactory ) : System |
Initializes a new instance of the DashboardHandlerBase class.
|
|
Dispose ( bool disposing ) : void |
Disposes of resources used by this instance.
|
|
EncodeString ( string value ) : byte[] |
Gets the given string value as an array of bytes.
|
|
GetCacheKey ( System.Web.HttpContextBase httpContext ) : string |
Gets the cache key to use for this instance's response.
|
|
NotFound ( ) : void |
Throws a 404 HttpException.
|
|
PerformRequest ( System.Web.HttpContextBase context ) : byte[] |
Performs the concrete request operation and returns the output as a byte array.
|
|
PrepareResponse ( System.Web.HttpContextBase context, |
Prepares an HTTP context's response.
|
|
ShouldCompressResponse ( ) : bool |
Gets a value indicating whether the response should be compressed if the client accepts compression.
|
protected DashboardHandlerBase ( IRepositoryFactory repositoryFactory ) : System | ||
repositoryFactory | IRepositoryFactory | The repository factory to use. |
return | System |
protected Dispose ( bool disposing ) : void | ||
disposing | bool | A value indicating whether to dispose of managed resources. |
return | void |
protected static EncodeString ( string value ) : byte[] | ||
value | string | The string value to get. |
return | byte[] |
protected GetCacheKey ( System.Web.HttpContextBase httpContext ) : string | ||
httpContext | System.Web.HttpContextBase | The HTTP context to get the cache key for. |
return | string |
protected abstract PerformRequest ( System.Web.HttpContextBase context ) : byte[] | ||
context | System.Web.HttpContextBase | The HTTP context to perform the request for. |
return | byte[] |
protected PrepareResponse ( System.Web.HttpContextBase context, |
||
context | System.Web.HttpContextBase | The HTTP context to prepare. |
output | The cached output the response is being prepared for, if applicable. | |
return | void |
public ProcessRequest ( |
||
context | An |
|
return | void |
public ProcessRequest ( System.Web.HttpContextBase context ) : void | ||
context | System.Web.HttpContextBase | An |
return | void |