-
Notifications
You must be signed in to change notification settings - Fork 10.4k
[skip-ci] Add missing xml docs for ExceptionHandler #48814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for your PR, @divyeshio. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
/// | ||
/// Represents an interface for handling exceptions in ASP.NET Core applications. | ||
/// Implementations of this interface can provide custom exception handling logic for | ||
/// different scenarios in the application. | ||
/// </summary> | ||
public interface IExceptionHandler |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TryHandleAsync
below also needs to be filled in.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than that, this looks good to me. Thanks for doing it.
src/Middleware/Diagnostics/src/ExceptionHandler/ExceptionHandlerServiceCollectionExtensions.cs
Outdated
Show resolved
Hide resolved
src/Middleware/Diagnostics/src/ExceptionHandler/IExceptionHandler.cs
Outdated
Show resolved
Hide resolved
…erServiceCollectionExtensions.cs Co-authored-by: James Newton-King <[email protected]>
…ler.cs Co-authored-by: James Newton-King <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Description
Adds missing inline xml docs for IExceptionHandler and AddExceptionHandler method
Fixes #48640