Читати англійською Редагувати

Поділитися через


StateBag.Values Property

Definition

Gets a collection of the view-state values stored in the StateBag object.

C#
public System.Collections.ICollection Values { get; }

Property Value

The collection of view-state values.

Implements

Examples

The following code example demonstrates using the Values property.

C#
private string GetMruList(string selectedValue) {
   StateBag state = ViewState;
   if (state.Count > 0) {
      int upperBound = state.Count;
      string[] keys = new string[upperBound];
      StateItem[] values = new StateItem[upperBound];
      state.Keys.CopyTo(keys, 0);
      state.Values.CopyTo(values, 0);
      StringBuilder options = new StringBuilder();
      for(int i = 0; i < upperBound; i++) {
         options.AppendFormat("<option {0} value={1}>{2}", (selectedValue == keys[i])?"selected":"", keys[i], values[i].Value);
      }
      return options.ToString();
   }
   return "";
}

Remarks

This is a collection that contains the values for all the StateItem objects in the specified page or control. You can iterate through these values by using the StateBag.GetEnumerator method.

Applies to

Продукт Версії
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also