StateBag.Item[String] 属性

定义

获取或设置在 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 时,将保存键以允许跟踪项的视图状态。

适用于

另请参阅