Delegado ListReadyEventHandler

NOTA: esta API está ahora obsoleta.

Representa el método que controlará el evento ListReady desencadenado por una clase Microsoft.SharePoint.WebPartPages.WebPart que implementa la interfaz IListProvider .

Espacio de nombres:  Microsoft.SharePoint.WebPartPages.Communication
Ensamblado:  Microsoft.SharePoint (en Microsoft.SharePoint.dll)

Sintaxis

'Declaración
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartTable instead")> _
Public Delegate Sub ListReadyEventHandler ( _
    sender As Object, _
    e As ListReadyEventArgs _
)
'Uso
Dim instance As New ListReadyEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartTable instead")]
public delegate void ListReadyEventHandler(
    Object sender,
    ListReadyEventArgs e
)

Parámetros

Comentarios

Cuando se crea un delegado de ListReadyEventHandler , se identifica el método que controlará el evento. Para asociar el evento a su controlador de eventos, agregue una instancia del delegado al evento. El controlador de eventos se llama siempre que se produce el evento, a menos que se quite al delegado.

Vea también

Referencia

Espacio de nombres Microsoft.SharePoint.WebPartPages.Communication