ParametersInReadyEventHandler Delegate
NOTE: This API is now obsolete.
Represents the method that will handle the ParametersInReady event fired by a Microsoft.SharePoint.WebPartPages.WebPart class that implements the IParametersInProvider interface.
Namespace: Microsoft.SharePoint.WebPartPages.Communication
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartParameters instead")> _
Public Delegate Sub ParametersInReadyEventHandler ( _
sender As Object, _
e As ParametersInReadyEventArgs _
)
'Usage
Dim instance As New ParametersInReadyEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartParameters instead")]
public delegate void ParametersInReadyEventHandler(
Object sender,
ParametersInReadyEventArgs e
)
Parameters
sender
Type: System.ObjectThe source of the event, the WebPart.
e
Type: Microsoft.SharePoint.WebPartPages.Communication.ParametersInReadyEventArgsA ParametersInReadyEventArgs that contains the event data.
Remarks
When you create a ParametersInReadyEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.