Add missing XML documentation to AndroidMessageHandler public properties#11360
Open
Copilot wants to merge 2 commits into
Open
Add missing XML documentation to AndroidMessageHandler public properties#11360Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
6 tasks
…MessageHandler Agent-Logs-Url: https://github.com/dotnet/android/sessions/291023bc-79ea-49a2-8aea-a340d736a43f Co-authored-by: jonathanpeppers <840039+jonathanpeppers@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add missing XML documentation to AndroidMessageHandler public properties
Add missing XML documentation to AndroidMessageHandler public properties
May 14, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds XML documentation comments to 21 previously-undocumented public properties on AndroidMessageHandler, bringing IntelliSense parity with the rest of the class. No code logic changes.
Changes:
- Added
<summary>(and where appropriate<remarks>/<exception>) tags to capability, cookie/auth, proxy, redirect, TLS/certificate, and limits properties. - Documented Android-specific defaults (e.g.,
SslProtocolsvarying by API level).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
21 public properties in
AndroidMessageHandler(lines 152–271) lacked XML doc comments while the rest of the class was fully documented, resulting in no IntelliSense descriptions for commonly-used API surface.Added
/// <summary>documentation to all undocumented properties:SupportsAutomaticDecompression,SupportsProxy,SupportsRedirectConfigurationAutomaticDecompression(with<remarks>listing supported methods)CookieContainer,UseCookies,PreAuthenticate,CredentialsUseProxy,Proxy,DefaultProxyCredentialsAllowAutoRedirect,MaxAutomaticRedirectionsClientCertificateOptions,ClientCertificates,CheckCertificateRevocationList,ServerCertificateCustomValidationCallback,SslProtocolsMaxConnectionsPerServer,MaxResponseHeadersLength,PropertiesStyle matches existing docs in the same file — uses
<see cref="..."/>,<see langword="..."/>,<exception>tags, and documents Android-specific defaults (e.g.,SslProtocolsvaries by API level). No code logic changes.