哪些字符不会被编码?

发布于 2024-10-30 01:20:15 字数 191 浏览 4 评论 0原文

对字符串进行编码时,

所以我正在 C# 中构建一个 WebAPI,当我使用Uri.EscapeDataString(String)

某些字符不会像 ! 那样进行编码。

我很好奇是否有一个列表列出了所有未编码的字符是什么 因为用户几乎可以传递任何东西。所以我可以创建一个异常并自己手动编码它们。

提前致谢!

So i am building a WebAPI in C# and when I encode my string using

Uri.EscapeDataString(String)

some characters are not encoded like !.

I was curious if there was a list of what all those characters are that don't get encoded are
because the user can pass just about anything. So I can create an exception and manually encode them myself.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时模样 2024-11-06 01:20:15

Uri.EscapeDataString 方法的 MSDN 页面显示:

默认情况下,EscapeDataString
方法转换除
对于 RFC 2396 非保留字符
它们的十六进制表示形式。

RFC 2396 在第 2.3 章中提到。未保留字符:

  unreserved  = alphanum | mark

  mark        = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"  

The MSDN page of the Uri.EscapeDataString Method says:

By default, the EscapeDataString
method converts all characters except
for RFC 2396 unreserved characters to
their hexadecimal representation.

The RFC 2396 says in Chapter 2.3. Unreserved Characters:

  unreserved  = alphanum | mark

  mark        = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文