本文介绍了[UWP]相当于Uri.UriSchemeHttp的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
WPF有许多用于评估uri方案的常量,这些常量都在
Uri 类中定义。我主要使用的两个是和,但这些或任何其他常量似乎都不存在于UWP版本中。是否存在等价物,或者我们是否难以对方案名称进行编码?
WPF has a number of constants for evaluating uri schemes, which are all defined in theUri class. The two I primarily work with are Uri.UriSchemeHttp and Uri.UriSchemeHttps, but neither these nor any other constants seem to exist in the UWP version. Are there equivalents or are we stuck hard coding the scheme name?
以下是进一步说明我的问题的示例:
Here's a sample to further illustrate my issue:
.NET
if (myUri.Scheme == Uri.UriSchemeHttp)
{
...
}
UWP
if (myUri.Scheme == "http") //Uri.UriSchemeHttp is missing!
{
...
}
推荐答案
这篇关于[UWP]相当于Uri.UriSchemeHttp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!