IStateManager.TrackViewState Metodo

Definizione

Quando viene implementato da una classe, indica al controllo server di tenere traccia delle modifiche apportate allo stato di visualizzazione.

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

Esempio

// 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

Commenti

Dopo che questo metodo è stato chiamato in un controllo server, la IsTrackingViewState proprietà restituirà true.

Si applica a

Vedi anche