RowProviderInitEventHandler delegate

NOTE: This API is now obsolete.

Represents the method that handles the IRowProvider.RowProviderInitevent fired by a Web Part that implements the IRowProvider interface.

Namespace:  Microsoft.SharePoint.WebPartPages.Communication
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")> _
Public Delegate Sub RowProviderInitEventHandler ( _
    sender As Object, _
    e As RowProviderInitEventArgs _
)
'Usage
Dim instance As New RowProviderInitEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartRow instead")]
public delegate void RowProviderInitEventHandler(
    Object sender,
    RowProviderInitEventArgs e
)

Parameters

  • sender
    Type: System.Object

    The source of the event, the Web Part.

Remarks

When you create a RowProviderInitEventHandler 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.

Examples

The following code example shows the declaration of an event of type RowProviderInitEventHandler from a Microsoft.SharePoint.WebPartPages.WebPart that implements the IRowProvider interface. A code sample that shows the implementation of the event handler is in the RowProviderInit event topic. A code sample that shows the full implementation of the IRowProvider interface is in the IRowProvider topic.

' Step #3: Declare the IRowProvider events.
' Because this class implements the IRowProvider interface, it must 
' declare the interface members RowProviderInit and RowReady. 

Public Event RowProviderInit As RowProviderInitEventHandler Implements IRowProvider.RowProviderInit
Public Event RowReady As RowReadyEventHandler Implements IRowProvider.RowReady
// Step #3: Declare the IRowProvider events.
// Because this class implements the IRowProvider interface, it must 
// declare the interface members RowProviderInit and RowReady. 

public event RowProviderInitEventHandler RowProviderInit;
public event RowReadyEventHandler RowReady;

See also

Reference

Microsoft.SharePoint.WebPartPages.Communication namespace