Freigeben über


CellProviderInitEventArgs-Klasse

HINWEIS: Diese API ist veraltet.

Enthält die Datenstruktur, die initialisiert wird, wenn ein ICellProvider -Webpart stellt eine Verbindung her und ein CellConsumerInit -Ereignis auf eine ICellConsumer -Schnittstelle löst. Kann nicht geerbt werden.

Vererbungshierarchie

System.Object
  System.EventArgs
    Microsoft.SharePoint.WebPartPages.Communication.InitEventArgs
      Microsoft.SharePoint.WebPartPages.Communication.CellProviderInitEventArgs

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

Syntax

'Declaration
<ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartField instead")> _
Public NotInheritable Class CellProviderInitEventArgs _
    Inherits InitEventArgs
'Usage
Dim instance As CellProviderInitEventArgs
[ObsoleteAttribute("Use System.Web.UI.WebControls.WebParts.IWebPartField instead")]
public sealed class CellProviderInitEventArgs : InitEventArgs

Beispiele

Das folgende Codebeispiel zeigt eine überschriebene PartCommunicationInit -Methode, die erstellt eine Datenstruktur CellProviderInitEventArgs , um die FieldName und FieldDisplayName -Eigenschaftswerte enthalten, die Eigenschaftswerte festgelegt und anschließend wird das CellProviderInit -Ereignis ausgelöst. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die ICellProvider -Schnittstelle.

      ' Step #9: Override the PartCommunicationInit() method
      ' PartCommunicationInit() is called by the Web Part 
      ' infrastructure during the ASP.NET PreRender 
      ' event to allow the part to pass initialization information to 
      ' the other connected parts.
      'It is important to always pass initialization information as 
      ' some parts may not behave properly if this initialization 
      ' information is not received.
      Public Overrides Sub PartCommunicationInit()
         ' Check if connected
         If _connected Then
               ' Create the InitEventArgs structure for the CellProviderInit event.
               Dim cellProviderInitArgs As New CellProviderInitEventArgs()
               
               ' Set the FieldName and FieldDisplay values.
               cellProviderInitArgs.FieldName = _cellName
               cellProviderInitArgs.FieldDisplayName = _cellDisplayName
               
               ' Fire the CellProviderInit event.
               RaiseEvent CellProviderInit(Me, cellProviderInitArgs)
         End If
      End Sub
        // Step #9: Override the PartCommunicationInit() method
        // PartCommunicationInit() is called by the Web Part 
        // infrastructure during the ASP.NET PreRender 
        // event to allow the part to pass initialization information 
        // to the other connected parts.
        // It is important to always pass initialization information as 
        // some parts may not behave properly if this initialization 
        // information is not received.
        public override void PartCommunicationInit()
        {
            // Check if connected
            if(_connected)
            {
                // If there is a listener, fire the CellProviderInit 
                // event.
                if (CellProviderInit != null)
                {
                    // Create the InitEventArgs structure for the 
                    // CellProviderInit event.
                    CellProviderInitEventArgs cellProviderInitArgs = new CellProviderInitEventArgs();
                    
                    // Set the FieldName and FieldDisplay values.
                    cellProviderInitArgs.FieldName = _cellName;
                    cellProviderInitArgs.FieldDisplayName = _cellDisplayName;
                    
                    // Fire the CellProviderInit event.
                    CellProviderInit(this, cellProviderInitArgs);
                }
            }
        }

Threadsicherheit

Alle öffentlichen static (Shared in Visual Basic) Member dieses Typs sind threadsicher. Die Threadsicherheit von Instanzmembern ist nicht gewährleistet.

Siehe auch

Referenz

CellProviderInitEventArgs-Member

Microsoft.SharePoint.WebPartPages.Communication-Namespace