Open this page in the API Guide

HttpRequestExtensions.CreateErrorResponse 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 (25.1.0.1000)
Syntax
public static ActionResult CreateErrorResponse(
	this HttpRequest request,
	HttpStatusCode statusCode,
	Exception exception,
	HttpContext context
)

Parameters

request
Type: Microsoft.AspNetCore.Http.HttpRequest
The request.
statusCode
Type: System.Net.HttpStatusCode
The status code.
exception
Type: System.Exception
The exception.
context
Type: Microsoft.AspNetCore.Http.HttpContext
The context.

Return Value

Type: ActionResult
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