Does anyone know how I might detect if a network is using a proxy or not? In our old .NET Windows Mobile application we used the following code to get through any proxy in place, and am wondering how to replicate this in QT.
WebClient web = new WebClient();
if (web.Proxy != null)
{
web.Proxy.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
}
Regards,
-Paul