Tagged Questions
The internetsetoption tag has no wiki summary.
1
vote
2answers
365 views
How do I use InternetSetOption?
This question:
Using Proxy with web browser control
Told me to use "InternetSetOption". How do I use it? How might I implement it in code (example?)?
Thanks!
1
vote
0answers
114 views
InternetSetOption change connection limit
How can I change the connection limit programmatically by calling the InternetSetOption function on a null handle ? i.e.,
How to use
INTERNET_OPTION_MAX_CONNS_PER_SERVER
or
...
1
vote
1answer
508 views
C# wininet InternetSetOption
I'm using http://stackoverflow.com/questions/434469/how-to-clear-system-windows-forms-webbrowser-session-data/1871828#1871828 and it works as long as there is only one browser. Is it possible to give ...
1
vote
1answer
523 views
Enable proxy by editing registry in real time in c#
This is the code that I use to enable the proxy. It has worked fine on all versions of windows up until Server 2008 R2 (Windows 7 Kernal). Now it only works the fist time. I start my application ...
0
votes
0answers
38 views
Is it possible for multiple processes to share proxy authentication details set via InternetSetOption?
The following code is being used to specify a proxy to use for the Windows OS. The proxy requires authentication, which is successfully being applied. Whilst this code sets the proxy for the whole ...
0
votes
1answer
539 views
WinInet InternetSetOption with INTERNET_OPTION_SUPPRESS_BEHAVIOR option not working as expected
Hi all and thanks for taking the time to read this. I have a c# application where I wish to override the default WinInet cookie settings. The goal is that even when the system WinInet cookie privacy ...
0
votes
2answers
587 views
Wininet's INTERNET_OPTION_IGNORE_OFFLINE doesn't work?
I'm trying to get Wininet to ignore Internet Explorer's "Work Offline" mode, for both HTTP and FTP.
So I'm trying to use InternetSetOption() with INTERNET_OPTION_IGNORE_OFFLINE. The documentation ...