Uri.TryCreate 对于任何字符串值都返回 true?
我正在尝试使用 Uri.TryCreate 方法验证 Uri,当我使用无效字符串调用它时,该方法返回 true。有什么想法吗?我的代码如下:
private void button1_Click(object sender, EventArgs e)
{
Uri tempValue;
if (Uri.TryCreate("NotAURL", UriKind.RelativeOrAbsolute, out tempValue))
{
MessageBox.Show("?");
}
}
I'm trying to validate a Uri using the Uri.TryCreate method and when I called it with an invalid string, the method returned true. Any ideas why? My code is below:
private void button1_Click(object sender, EventArgs e)
{
Uri tempValue;
if (Uri.TryCreate("NotAURL", UriKind.RelativeOrAbsolute, out tempValue))
{
MessageBox.Show("?");
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个有效的相对 URL。无效 URI 的示例如下:
如果您只想允许绝对 URI,请使用
UriKind.Absolute
。该示例将无法解析。
That's a valid relative URL. An example of a invalid URI is:
If you want to allow only absolute URIs, use
UriKind.Absolute
.The example will then fail to parse.