IStateManager.TrackViewState Yöntem

Tanım

Bir sınıf tarafından uygulandığında, sunucu denetimine görünüm durumundaki değişiklikleri izlemesini bildirir.

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

Örnekler

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

Açıklamalar

Bu yöntem bir sunucu denetiminde IsTrackingViewState çağrıldıktan sonra özelliği döndürür true.

Şunlara uygulanır

Ayrıca bkz.