我正在尝试将图像的Uri传递到UriImageSource.Uri但是在Uri字符串中包含%20,它被错误地转换为空格
即。
http://domain.co.uk/Category%20Name/Products/Product-image.jpg
当它被解析为我的函数
UriImageSource UriImageSource = new UriImageSource();
UriBuilder Builder = new UriBuilder(productURL);
UriImageSource.Uri = Builder.Uri;
return UriImageSource;
UriImageSource.Uri转换为
http://domain.co.uk/Category Name/Products/Product-image.jpg
然后在我的应用程序中抛出错误,因为URL包含%20而不是空格...任何帮助都非常感谢。谢谢!