Programming Tutorials

HttpError is not found in Asp,net core project

By: Linda Ng in Asp.net Tutorials on 2023-06-01  

In the newer versions of ASP.NET Core, the HttpError type is not available. Instead, you can handle the error response using the HttpResponseMessage object and extract the error message from the response content. Here's an example:

if (!response.IsSuccessStatusCode)
{
    string statusCode = response.StatusCode.ToString();
    string reasonPhrase = response.ReasonPhrase;

    string errorMessage = string.Empty;
    string errorMessageDetail = string.Empty;

    if (response.Content != null)
    {
        string responseContent = await response.Content.ReadAsStringAsync();
        // You may need to customize the parsing logic based on the response content type (e.g., JSON, XML, plain text, etc.)
        // Here's an example for parsing a JSON response
        var errorData = JObject.Parse(responseContent);
        errorMessage = errorData["message"]?.ToString();
        errorMessageDetail = errorData["messageDetail"]?.ToString();
    }

    System.Diagnostics.Debug.WriteLine($"{statusCode} {reasonPhrase}");
    System.Diagnostics.Debug.WriteLine(errorMessage);
    System.Diagnostics.Debug.WriteLine(errorMessageDetail);
}

This code retrieves the status code, reason phrase, error message, and error message detail from the response. It assumes the response content is in JSON format, but you may need to adjust the parsing logic based on the actual response content type.

Please note that the specific structure and properties of the error response may vary depending on the API you're working with. Make sure to adapt the code to match the structure of the error response you receive.






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in Asp.net )

Button that is only clickable when the checkbox is checked

DataGrid Control in ASP.net

Severity Code Description Project File Line Suppression State Error CS0103 The name 'JsonConvert' does not exist in the current context.

Things to note when changing a function to async in your controller

Passing a model globally to all Views in your Asp.net webapp

Pass the same model to multiple views within the same controller

Severity Code Description Project File Line Suppression State Error CS0103 The name 'Encoding' does not exist in the current context

HttpError is not found in Asp,net core project

One client credential type required either: ClientSecret, Certificate, ClientAssertion or AppTokenProvider must be defined when creating a Confidential Client. Only specify one

Microsoft.Identity vs Microsoft.IdentityModel.Clients.ActiveDirectory

Do we need to redeploy the webapp when appsettings.json change?s

Downloading and Installing the AWS SDK for .NET

Severity Code Description Project File Line Suppression State Error CS1061 'string[]' does not contain a definition for 'Any' and no accessible extension method 'Any' accepting a first argument of type 'string[]' could be found (are you missing a using directive or an assembly reference?)

Severity Code Description Project File Line Suppression State Warning Found conflicts between different versions of the same dependent assembly.

ActiveX component can't create object: 'CDONTS.NewMail' - ASP

Latest Articles (in Asp.net)

Things to note when changing a function to async in your controller

AmbiguousMatchException: The request matched multiple endpoints.

Call an Action in a controller when user clicks a button in View

Button that is only clickable when the checkbox is checked

Pass the same model to multiple views within the same controller

Severity Code Description Project File Line Suppression State Error CS0103 The name 'Encoding' does not exist in the current context

Severity Code Description Project File Line Suppression State Error CS0103 The name 'JsonConvert' does not exist in the current context.

Passing a model globally to all Views in your Asp.net webapp

Severity Code Description Project File Line Suppression State Error CS0246 The type or namespace name 'JToken' could not be found.

Severity Code Description Project File Line Suppression State Error CS0308 The non-generic type 'List' cannot be used with type arguments.

One client credential type required either: ClientSecret, Certificate, ClientAssertion or AppTokenProvider must be defined when creating a Confidential Client. Only specify one

Severity Code Description Project File Line Suppression State Warning Found conflicts between different versions of the same dependent assembly.

Severity Code Description Project File Line Suppression State Error CS1061 'string[]' does not contain a definition for 'Any' and no accessible extension method 'Any' accepting a first argument of type 'string[]' could be found (are you missing a using directive or an assembly reference?)

Pagination in ASP.net core application

Microsoft.Identity vs Microsoft.IdentityModel.Clients.ActiveDirectory

Related Tutorials

Things to note when changing a function to async in your controller

AmbiguousMatchException: The request matched multiple endpoints.

Call an Action in a controller when user clicks a button in View

Button that is only clickable when the checkbox is checked

Pass the same model to multiple views within the same controller

Severity Code Description Project File Line Suppression State Error CS0103 The name 'Encoding' does not exist in the current context

Severity Code Description Project File Line Suppression State Error CS0103 The name 'JsonConvert' does not exist in the current context.

Passing a model globally to all Views in your Asp.net webapp

Severity Code Description Project File Line Suppression State Error CS0246 The type or namespace name 'JToken' could not be found.

Severity Code Description Project File Line Suppression State Error CS0308 The non-generic type 'List' cannot be used with type arguments.

One client credential type required either: ClientSecret, Certificate, ClientAssertion or AppTokenProvider must be defined when creating a Confidential Client. Only specify one

Severity Code Description Project File Line Suppression State Warning Found conflicts between different versions of the same dependent assembly.

Severity Code Description Project File Line Suppression State Error CS1061 'string[]' does not contain a definition for 'Any' and no accessible extension method 'Any' accepting a first argument of type 'string[]' could be found (are you missing a using directive or an assembly reference?)

Pagination in ASP.net core application

Microsoft.Identity vs Microsoft.IdentityModel.Clients.ActiveDirectory