IStateManager.TrackViewState 方法

定義

當類別實作時,指示伺服器控制項以追蹤其檢視狀態的變更。

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

範例

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

備註

在伺服器控制項上呼叫這個方法之後, IsTrackingViewState 屬性會傳回 true

適用於

另請參閱