Closed ManickaP closed 3 weeks ago
Learn Build status updates of commit 11eb380:
File | Status | Preview URL | Details |
---|---|---|---|
xml/System.Net/WebUtility.xml | :warning:Warning | View | Details |
Cross reference not found: 'System.Uri.WebUtility.EscapeDataString*'.
Cross reference not found: 'System.Uri.WebUtility.EscapeDataString*'.
For more details, please refer to the build report.
Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them.
For any questions, please:
Learn Build status updates of commit 216c332:
File | Status | Preview URL | Details |
---|---|---|---|
xml/System.Net/WebUtility.xml | :warning:Warning | View | Details |
Cross reference not found: 'System.Uri.WebUtility.EscapeDataString*'.
Cross reference not found: 'System.Net.WebUtility.UrlDecode'.
Cross reference not found: 'System.Uri.WebUtility.EscapeDataString*'.
Cross reference not found: 'System.Net.WebUtility.UrlDecodeToBytes'.
For more details, please refer to the build report.
Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them.
For any questions, please:
Learn Build status updates of commit 4c2ebf8:
File | Status | Preview URL | Details |
---|---|---|---|
xml/System.Net/WebUtility.xml | :white_check_mark:Succeeded | View |
For more details, please refer to the build report.
For any questions, please:
Also the list of unescaped punction doesn't follow neither URI RFC (old or new) nor any other spec I could find.
The code mentions https://datatracker.ietf.org/doc/html/rfc1738 that includes this bit:
safe = "$" | "-" | "_" | "." | "+"
extra = "!" | "*" | "'" | "(" | ")" | ","
but even that doesn't match the characters used 😄
UrlEncode
is suitable only for query segment or x-www-form-urlencoded content. Also the list of unescaped punction doesn't follow neither URI RFC (old or new) nor any other spec I could find.