StateBag.Add(String, Object) 方法

定义

将新的 StateItem 对象添加到 StateBag 对象。 如果该项已经存在于 StateBag 对象中,则此方法会更新该项的值。

public:
 System::Web::UI::StateItem ^ Add(System::String ^ key, System::Object ^ value);
public System.Web.UI.StateItem Add (string key, object value);
member this.Add : string * obj -> System.Web.UI.StateItem
Public Function Add (key As String, value As Object) As StateItem

参数

key
String

StateItem 的特性名称。

value
Object

要添加到 StateBag 的项的值。

返回

StateItem

返回表示添加到视图状态的对象的 StateItem

例外

keynull

  • 或 - key 中的字符数为 0。

示例

下面的代码示例演示如何使用 Add 该方法。

void MovePiece(string fromPosition, string toPosition) {
   StateBag bag = ViewState;
   object piece = bag[fromPosition];
   if (piece != null) {
      bag.Remove(fromPosition);
      bag.Add(toPosition, piece);
      RenderBoard();
   }
   else {
      throw new InvalidPositionException("There is no game piece at the \"from\" position."); 
   }
}
Sub MovePiece(fromPosition As String, toPosition As String)
   Dim bag As StateBag = ViewState
   Dim piece As Object = bag(fromPosition)
   If Not (piece Is Nothing) Then
      bag.Remove(fromPosition)
      bag.Add(toPosition, piece)
      RenderBoard()
   Else
      Throw New InvalidPositionException("There is no game piece at the ""from"" position.")
   End If
End Sub 'MovePiece

适用于

另请参阅