DataBoundControl.MarkAsDataBound Метод

Определение

Задает в данных о состоянии представления состояние элемента управления, соответствующее успешной привязке к данным.

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

Примеры

В следующем примере кода показано, как MarkAsDataBound метод используется производным классом элемента управления с привязкой к данным. После получения данных методом GetData и привязки к элементу управления с PerformDataBinding помощью метода RequiresDataBinding задается false свойство и 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.

Применяется к

См. также раздел