WebBrowser.WebBrowserSite Class

Definition

Represents the host window of a WebBrowser control.

protected: ref class WebBrowser::WebBrowserSite : System::Windows::Forms::WebBrowserSiteBase
[System.Runtime.InteropServices.ComVisible(false)]
protected class WebBrowser.WebBrowserSite : System.Windows.Forms.WebBrowserSiteBase
protected class WebBrowser.WebBrowserSite : System.Windows.Forms.WebBrowserSiteBase
Protected Class WebBrowser.WebBrowserSite
Inherits WebBrowserSiteBase
Inheritance
WebBrowser.WebBrowserSite
Attributes

Remarks

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. 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.

Note

If you provide your own implementation for any IDocHostUIHandler members, you must implement all the members of that interface.

Constructors

WebBrowser.WebBrowserSite(WebBrowser)

Initializes a new instance of the WebBrowser.WebBrowserSite class.

Methods

Dispose()

This API supports the product infrastructure and is not intended to be used directly from your code.

Releases all resources used by the WebBrowserSiteBase.

(Inherited from WebBrowserSiteBase)
Dispose(Boolean)

This API supports the product infrastructure and is not intended to be used directly from your code.

Releases the unmanaged resources used by the WebBrowserSiteBase and optionally releases the managed resources.

(Inherited from WebBrowserSiteBase)
Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also