ParametersInReadyEventHandler delegate

NOTE: This API is now obsolete.

Representa o método que manipulará o evento ParametersInReady acionado por uma classe Microsoft.SharePoint.WebPartPages.WebPart que implementa a interface IParametersInProvider .

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

Syntax

'Declaração
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartParameters instead")> _
Public Delegate Sub ParametersInReadyEventHandler ( _
    sender As Object, _
    e As ParametersInReadyEventArgs _
)
'Uso
Dim instance As New ParametersInReadyEventHandler(AddressOf HandlerMethod)
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartParameters instead")]
public delegate void ParametersInReadyEventHandler(
    Object sender,
    ParametersInReadyEventArgs e
)

Parâmetros

Comentários

Quando você criar um representante de ParametersInReadyEventHandler , você identificar o método que manipulará o evento. Para associar o evento com o manipulador de eventos, adicione uma instância do representante para o evento. O manipulador de eventos é chamado sempre que o evento ocorre, a menos que você remova o representante.

Ver também

Referência

Microsoft.SharePoint.WebPartPages.Communication namespace