public sealed class ErrorReportingExceptionLoggerMiddleware
Reference documentation and code samples for the Google.Cloud.Diagnostics.AspNetCore3 class ErrorReportingExceptionLoggerMiddleware.
Middleware that will, when invoked, call the next RequestDelegate,
catch any exception that it may throw, send that exception to the
Google Cloud Error Reporting API and rethrow the given exception.
A logger that will report exceptions. Must not be null.
Methods
Invoke(HttpContext)
public Task Invoke(HttpContext httpContext)
Invokes the next RequestDelegate, catches any exception thrown,
reports the exception to the Google Cloud Error Reporting API and rethrows
the exception.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["This document provides reference information for the `ErrorReportingExceptionLoggerMiddleware` class within the Google.Cloud.Diagnostics.AspNetCore3 library, specifically version 5.1.0."],["The `ErrorReportingExceptionLoggerMiddleware` is middleware designed to catch exceptions thrown by the next `RequestDelegate`, report them to the Google Cloud Error Reporting API, and then rethrow the exception."],["The middleware has a constructor that takes a `RequestDelegate` and an `IExceptionLogger` as parameters, both of which cannot be null, and is used to set the next delegate in the request pipeline and log any exceptions."],["The `Invoke` method is used to execute the next `RequestDelegate` and will report any exception thrown to the Google Cloud Error Reporting API, the method requires an `HttpContext` as a parameter."],["The document also includes inherited members from the `object` class, such as `GetHashCode()`, `GetType()`, `MemberwiseClone()`, and `ToString()`, which are part of the base class functionalities."]]],[]]