TurnContextStateCollection.Set 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Set<T>(T) |
将值设置为轮次的上下文。 |
Set<T>(String, T) |
将值设置为轮次的上下文。 |
Set<T>(T)
将值设置为轮次的上下文。
public void Set<T> (T value) where T : class;
member this.Set : 'T -> unit (requires 'T : null)
Public Sub Set(Of T As Class) (value As T)
类型参数
- T
对象的类型。
参数
- value
- T
要相加的值。
例外
value
为 null。
适用于
Set<T>(String, T)
将值设置为轮次的上下文。
public void Set<T> (string key, T value) where T : class;
member this.Set : string * 'T -> unit (requires 'T : null)
Public Sub Set(Of T As Class) (key As String, value As T)
类型参数
- T
对象的类型。
参数
- key
- String
对象的名称。
- value
- T
要相加的值。
例外
key
或 value
为 null。