-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Enhance debugging in ViewHandler.cs #29538
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
Enhance debugging in ViewHandler.cs #29538
Conversation
Added System.Diagnostics for debugging support. Introduced DebuggerDisplay attribute to ViewHandler class and added GetDebuggerDisplay method to improve object state visibility during debugging.
Hey there @@pictos! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
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.
Pull Request Overview
This PR enhances debugging support for the ViewHandler
class by adding a DebuggerDisplay
attribute and a helper method to improve the visibility of handler state in debuggers.
- Imported
System.Diagnostics
namespace - Applied
[DebuggerDisplay]
attribute toViewHandler
- Added
GetDebuggerDisplay
method for custom debugger text
Co-authored-by: Copilot <[email protected]>
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
* Enhance debugging in ViewHandler.cs Added System.Diagnostics for debugging support. Introduced DebuggerDisplay attribute to ViewHandler class and added GetDebuggerDisplay method to improve object state visibility during debugging. * Update src/Core/src/Handlers/View/ViewHandler.cs Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Gerald Versluis <[email protected]> Co-authored-by: Copilot <[email protected]>
* Enhance debugging in ViewHandler.cs Added System.Diagnostics for debugging support. Introduced DebuggerDisplay attribute to ViewHandler class and added GetDebuggerDisplay method to improve object state visibility during debugging. * Update src/Core/src/Handlers/View/ViewHandler.cs Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Gerald Versluis <[email protected]> Co-authored-by: Copilot <[email protected]>
* Enhance debugging in ViewHandler.cs Added System.Diagnostics for debugging support. Introduced DebuggerDisplay attribute to ViewHandler class and added GetDebuggerDisplay method to improve object state visibility during debugging. * Update src/Core/src/Handlers/View/ViewHandler.cs Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Gerald Versluis <[email protected]> Co-authored-by: Copilot <[email protected]>
Note
Are you waiting for the changes in this PR to be merged?
It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!
Description of Change
Added System.Diagnostics for debugging support. Introduced DebuggerDisplay attribute to ViewHandler class and added GetDebuggerDisplay method to improve object state visibility during debugging.
Issues Fixed
Fixes #29537