silverlight - HTTPS equivalent of WebRequest.CreateHttp on Windows Phone 7? -
i have c# code in windows phone app...
webrequest wrq = webrequest.createhttp("http://bing.com");
is possible make use https instead? there's no createhttps, , no obvious flags me fiddle with.
chris
have tried following?
webrequest wrq = webrequest.create("https://bing.com");
notice url uses https scheme. believe should work fine. did run issue method?
Comments
Post a Comment