StateBag.Item[String] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定儲存於 StateBag 物件中的項目值。
public:
property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ key); void set(System::String ^ key, System::Object ^ value); };
public object this[string key] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(key As String) As Object
參數
- key
- String
項目的索引鍵。
屬性值
StateBag 物件中的指定項目。
範例
下列程式代碼範例示範屬性,它會將其名稱和值儲存為屬性的 Control.ViewState 索引鍵/值組。 屬性 ViewState 是 類別的 StateBag 實例。
// Add property values to view state with set;
// retrieve them from view state with get.
public String Text
{
get
{
object o = ViewState["Text"];
return (o == null)? String.Empty : (string)o;
}
set
{
ViewState["Text"] = value;
}
}
' Add property values to view state with set;
' retrieve them from view state with get.
Public Property [Text]() As String
Get
Dim o As Object = ViewState("Text")
If (IsNothing(o)) Then
Return String.Empty
Else
Return CStr(o)
End If
End Get
Set(ByVal value As String)
ViewState("Text") = value
End Set
End Property
備註
使用此成員是儲存和擷取控件或頁面檢視狀態值的最簡單方式。
如果您設定此屬性時,尚未將專案儲存在物件中 StateBag ,則會將其索引鍵/值組新增至集合。 如果您在專案上呼叫 方法之前TrackViewState將此屬性設定為 null
,則會從 StateBag 物件中移除它。 否則,當您將此屬性設定為 null
索引鍵時會儲存,以允許追蹤專案的檢視狀態。