WebPartConnectionsEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the method that will handle the WebPartsConnected and WebPartsDisconnected events of the WebPartManager control.
public delegate void WebPartConnectionsEventHandler(System::Object ^ sender, WebPartConnectionsEventArgs ^ e);
public delegate void WebPartConnectionsEventHandler(object sender, WebPartConnectionsEventArgs e);
type WebPartConnectionsEventHandler = delegate of obj * WebPartConnectionsEventArgs -> unit
Public Delegate Sub WebPartConnectionsEventHandler(sender As Object, e As WebPartConnectionsEventArgs)
Parameters
- sender
- Object
The source of the event.
A WebPartConnectionsEventArgs that contains the event data.
Remarks
The WebPartConnectionsEventHandler class defines a handler delegate for two events that occur on the WebPartManager control: the WebPartsConnected event and the WebPartsDisconnected event. The method that handles the WebPartsConnected event is the OnWebPartsConnected method. The method that handles the WebPartsDisconnected event is the OnWebPartsDisconnected method. In both cases, the event data are contained in a WebPartConnectionsEventArgs object.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |