DataBoundControl.MarkAsDataBound メソッド

定義

ビューステートのコントロールの状態を、データに正常にバインドされた状態に設定します。

protected:
 void MarkAsDataBound();
protected void MarkAsDataBound ();
member this.MarkAsDataBound : unit -> unit
Protected Sub MarkAsDataBound ()

次のコード例は、派生データ バインド コントロール クラスでメソッドを使用する方法 MarkAsDataBound を示しています。 メソッドによってGetDataデータが取得され、メソッドを使用PerformDataBindingしてコントロールにバインドされると、プロパティが設定falseされ、RequiresDataBindingメソッドが呼び出されてMarkAsDataBound、コントロールがバインドを完了し、現在のページのライフ サイクル中に必要なくなったことを通知します。 このコード例は、DataBoundControl クラスのために提供されている大規模な例の一部です。

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

注釈

データ バインド コントロールは、現在データにバインドされているかどうかを示すビュー ステートの値を保持します。 このメソッドは MarkAsDataBound 、値を . に true設定します。

適用対象

こちらもご覧ください