HttpRequestExtensionsCreateErrorResponse Method

Creates the error response for an exception. This method will also add the .Data attributes, if any.

Namespace:  Dundas.BI.WebApi
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public static IStatusCodeActionResult CreateErrorResponse(
	this HttpRequest request,
	HttpStatusCode statusCode,
	Exception exception,
	HttpContext context
)

Parameters

request
Type: Microsoft.AspNetCore.HttpHttpRequest
The request.
statusCode
Type: System.NetHttpStatusCode
The status code.
exception
Type: SystemException
The exception.
context
Type: Microsoft.AspNetCore.HttpHttpContext
The context.

Return Value

Type: IStatusCodeActionResult
The 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