IStateManager.IsTrackingViewState プロパティ
アセンブリ: System.Web (system.web.dll 内)

サーバー コントロールがビューステートの変化を追跡する場合は true。それ以外の場合は false。

' Implement the IsTrackingViewState method for this class ' by calling the IsTrackingViewState method of the class's ' private _viewstate property. ReadOnly Property IsTrackingViewState() As Boolean Implements IStateManager.IsTrackingViewState Get Return CType(_viewstate, IStateManager).IsTrackingViewState End Get End Property
// Implement the IsTrackingViewState method for this class // by calling the IsTrackingViewState method of the class's // private _viewstate property. bool IStateManager.IsTrackingViewState { get { return ((IStateManager)_viewstate).IsTrackingViewState; } }
// Implement the IsTrackingViewState method for this class // by calling the IsTrackingViewState method of the class's // private _viewState property. /** @property */ public boolean get_IsTrackingViewState() { return ((IStateManager)_viewState).get_IsTrackingViewState(); } // get_IsTrackingViewState

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からIStateManager.IsTrackingViewState プロパティを検索する場合は、下記のリンクをクリックしてください。

- IStateManager.IsTrackingViewState プロパティのページへのリンク