Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to make the WebBrowser control use a proxy server


INTRODUCTION

This article describes an All-In-One Code Framework sample that is available for download. The sample demonstrates how to make the WebBrowser control use a proxy server.

Difficulty level


Download information

To download this code sample, click one of the following links:

Technical overview

In Internet Explorer 5 and later versions of Internet Explorer 5, Internet options can be set on a specific connection and process. For example, Internet options can be set on the LAN connection or on the ADSL connection. Wininet.dll component contains the following four extern methods to set and retrieve Internet settings:

  • InternetOpen
  • InternetCloseHandle
  • InternetSetOption
  • InternetQueryOption

Sample overview

/// <summary>
        /// Initialize an application's use of the WinINet functions.
        /// See 
        /// </summary>
        [DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
        internal static extern IntPtr InternetOpen(
            string lpszAgent,
            int dwAccessType,
            string lpszProxyName,
            string lpszProxyBypass,
            int dwFlags);
 
        /// <summary>
        /// Close a single Internet handle.
        /// </summary>
        [DllImport("wininet.dll", SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        internal static extern bool InternetCloseHandle(IntPtr hInternet);
 
        /// <summary>
        /// Sets an Internet option.
        /// </summary>
        [DllImport("wininet.dll", CharSet = CharSet.Ansi, SetLastError = true)]
        internal static extern bool InternetSetOption(
            IntPtr hInternet,
            INTERNET_OPTION dwOption,
            IntPtr lpBuffer,
            int lpdwBufferLength);
 
        /// <summary>
        /// Queries an Internet option on the specified handle. The Handle will be always 0.
        /// </summary>
        [DllImport("wininet.dll", CharSet = CharSet.Ansi, SetLastError = true)]
        internal extern static bool InternetQueryOption(
            IntPtr hInternet,
            INTERNET_OPTION dwOption,
            ref INTERNET_PER_CONN_OPTION_LIST OptionList,
            ref int lpdwBufferLength);

Technology category

  • Windows Forms
  • Network

 

Languages

This code sample is available in the following programming languages:

Language Project Name
Visual C# CSWebBrowserWithProxy
Visual Basic.NET VBWebBrowserWithProxy

Prerequisites

This sample application is developed by using Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.

References

For more information the InternetSetOption function, visit the following MSDN website: 

General information the InternetSetOption function

For more information the InternetQueryOption function, visit the following MSDN website:

General information the InternetQueryOption function

For more information the INTERNET_PER_CONN_OPTION structure, visit the following MSDN website:

General information the INTERNET_PER_CONN_OPTION structure

For more information how to set and retrieve Internet options, visit the following MSDN website:

How to set and retrieve Internet options

↑ Back to the top


More Information

What is All-In-One Code Framework?
 

All-In-One Code Framework shows most Microsoft development techniques by using code samples in different programming languages. Each example is carefully selected, composed, and documented to show one common code scenario. For more information about All-In-One Code Framework, visit the following Microsoft website:

http://1code.codeplex.com

How to find more All-In-One Code Framework samples

To find more All-In-One Code Framework samples, search for "kbcodefx" together with related keywords on the Microsoft support Web site. Or, visit the following Microsoft website:

All-In-One Code Framework samples

↑ Back to the top


Rapid publishing disclaimer

Microsoft corporation and/or its respective suppliers make no representations about the suitability, reliability, or accuracy of the information and related graphics contained herein. All such information and related graphics are provided "as is" without warranty of any kind. Microsoft and/or its respective suppliers hereby disclaim all warranties and conditions with regard to this information and related graphics, including all implied warranties and conditions of merchantability, fitness for a particular purpose, workmanlike effort, title and non-infringement. You specifically agree that in no event shall Microsoft and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use of or inability to use the information and related graphics contained herein, whether based on contract, tort, negligence, strict liability or otherwise, even if Microsoft or any of its suppliers has been advised of the possibility of damages.

↑ Back to the top


Keywords: kbcodefx, kbinfo, kbsurveynew, kbnomt, kbrapidpub, atdownload, kb

↑ Back to the top

Article Info
Article ID : 2563548
Revision : 2
Created on : 11/1/2018
Published on : 11/1/2018
Exists online : False
Views : 186