c# - Turning a IP Address into a valid URI -


i have been trying navigate webview element in windows store app '192.168.0.1' reason uri class can not parse it, there way make convert ip address uri?

the answer add prefix of ip's protocol:

http:// or https://, instance

new uri("192.168.0.1") have new uri("http://192.168.0.1/")

thanks bob kaufman


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

Redirect to a HTTPS version using .htaccess -