DataBoundControl.PerformSelect Yöntem

Tanım

İlişkili veri kaynağından veri alır.

protected:
 override void PerformSelect();
protected override void PerformSelect ();
override this.PerformSelect : unit -> unit
Protected Overrides Sub PerformSelect ()

Örnekler

Aşağıdaki kod örneği, yöntemini kullanarak ilişkili bir veri kaynağından veri almak ve denetimin GetData öğelerine bağlamak için yönteminin nasıl geçersiz kılınacağını PerformSelect gösterir. Bu kod örneği, sınıfı için DataBoundControl sağlanan daha büyük bir örneğin parçasıdır.

protected override void PerformSelect() {            

   // Call OnDataBinding here if bound to a data source using the
   // DataSource property (instead of a DataSourceID), because the
   // databinding statement is evaluated before the call to GetData.       
    if (! IsBoundUsingDataSourceID) {
        OnDataBinding(EventArgs.Empty);
    }            
    
    // The GetData method retrieves the DataSourceView object from  
    // the IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), 
        OnDataSourceViewSelectCallback);
    
    // The PerformDataBinding method has completed.
    RequiresDataBinding = false;
    MarkAsDataBound();
    
    // Raise the DataBound event.
    OnDataBound(EventArgs.Empty);
}
Protected Overrides Sub PerformSelect()

    ' Call OnDataBinding here if bound to a data source using the 
    ' DataSource property (instead of a DataSourceID) because the 
    ' data-binding statement is evaluated before the call to GetData.
    If Not IsBoundUsingDataSourceID Then
        OnDataBinding(EventArgs.Empty)
    End If

    ' The GetData method retrieves the DataSourceView object from the 
    ' IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), _
        AddressOf OnDataSourceViewSelectCallback)

    ' The PerformDataBinding method has completed.
    RequiresDataBinding = False
    MarkAsDataBound()

    ' Raise the DataBound event.
        OnDataBound(EventArgs.Empty)

End Sub

Açıklamalar

PerformDataBinding Veri bağlama denetimi öğelerine veri bağlamak için veri alındıktan sonra yöntemi çağrılır. Türetilmiş türler, yalnızca varsayılan uygulama yeterli değilse verileri almak için bu yöntemi geçersiz kılar. Genellikle, yöntemini uygulamak PerformDataBinding yerine herhangi bir özel veri çalışmasını gerçekleştiren bir DataSourceViewSelectCallback temsilci sağlamak yeterlidir.

Şunlara uygulanır

Ayrıca bkz.