IStateManager.TrackViewState Método

Definición

Cuando se implementa mediante una clase, se indica al control de servidor que realice un seguimiento de los cambios del estado de vista.

public:
 void TrackViewState();
public void TrackViewState ();
abstract member TrackViewState : unit -> unit
Public Sub TrackViewState ()

Ejemplos

// Implement the TrackViewState method for this class by
// calling the TrackViewState method of the class's private
// _viewstate property.
void IStateManager.TrackViewState()
{
    ((IStateManager)_viewstate).TrackViewState();
}
' Implement the TrackViewState method for this class by
' calling the TrackViewState method of the class's private
' _viewstate property.
Sub TrackViewState() Implements IStateManager.TrackViewState
    CType(_viewstate, IStateManager).TrackViewState()
End Sub

Comentarios

Después de llamar a este método en un control de servidor, la IsTrackingViewState propiedad devolverá true.

Se aplica a

Consulte también