HttpRequestExtensionsCreateErrorResponse Method |
Creates the error response for an exception. This method will also add the .Data attributes, if any.
Namespace: Dundas.BI.WebApiAssembly: Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic static ActionResult CreateErrorResponse(
this HttpRequest request,
HttpStatusCode statusCode,
Exception exception,
HttpContext context
)
<ExtensionAttribute>
Public Shared Function CreateErrorResponse (
request As HttpRequest,
statusCode As HttpStatusCode,
exception As Exception,
context As HttpContext
) As ActionResult
public:
[ExtensionAttribute]
static ActionResult^ CreateErrorResponse(
HttpRequest^ request,
HttpStatusCode statusCode,
Exception^ exception,
HttpContext^ context
)
[<ExtensionAttribute>]
static member CreateErrorResponse :
request : HttpRequest *
statusCode : HttpStatusCode *
exception : Exception *
context : HttpContext -> ActionResult Parameters
- request HttpRequest
- The request.
- statusCode HttpStatusCode
- The status code.
- exception Exception
- The exception.
- context HttpContext
- The context.
Return Value
ActionResultThe response message.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
HttpRequest. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also