WebBrowser.WebBrowserSite Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration <ComVisibleAttribute(False)> _ Protected Class WebBrowserSite Inherits WebBrowserSiteBase 'Usage Dim instance As WebBrowserSite
/** @attribute ComVisibleAttribute(false) */ protected class WebBrowserSite extends WebBrowserSiteBase
ComVisibleAttribute(false) protected class WebBrowserSite extends WebBrowserSiteBase
If you are familiar with OLE development using the unmanaged WebBrowser ActiveX control, you can extend the functionality of the Windows Forms WebBrowser control, which is a managed wrapper for the ActiveX control. You can use this extensibility, for example, to customize the browser shortcut menu and shortcut keys or to provide a custom security configuration for hosted documents.
To use this feature, implement classes that inherit from the WebBrowser and WebBrowser.WebBrowserSite classes. The unmanaged WebBrowser ActiveX control uses the protected WebBrowser.CreateWebBrowserSiteBase method to retrieve extensibility interfaces implemented by the WebBrowser.WebBrowserSite class. Override the CreateWebBrowserSiteBase method to return an instance of your own class that inherits from the WebBrowser.WebBrowserSite class. The WebBrowser.WebBrowserSite class provides a default implementations of the OLE IDocHostUIHandler interface. For more information, see "IDocHostUIHandler Interface" in the MSDN library at http://msdn.microsoft.com/library. You can provide your own implementation of this interface or implement any other WebBrowser ActiveX control interface in order to customize the behavior of the control. For more information, see "WebBrowser Control" in the MSDN library at http://msdn.microsoft.com/library.
Note |
|---|
| If you provide your own implementation for any IDocHostUIHandler members, you must implement all the members of that interface. |
- SecurityPermission for overriding this type, which requires access to unmanaged code. Associated enumerations: SecurityAction.InheritanceDemand and SecurityPermissionFlag.UnmanagedCode
System.Windows.Forms.WebBrowserSiteBase
System.Windows.Forms.WebBrowser.WebBrowserSite
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note