ISessionStateItemCollection.Remove(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中删除某个项。
public:
void Remove(System::String ^ name);
public void Remove (string name);
abstract member Remove : string -> unit
Public Sub Remove (name As String)
参数
- name
- String
要从集合中删除的项的名称。
示例
下面的代码示例演示 Remove 方法的实现。 有关接口的完整实现 ISessionStateItemCollection 的示例,请参阅接口概述中 ISessionStateItemCollection 提供的示例。
public void Remove(string name)
{
pItems.Remove(name);
pDirty = true;
}
Public Sub Remove(name As String) Implements ISessionStateItemCollection.Remove
pItems.Remove(name)
pDirty = True
End Sub
注解
在实现 方法时 Remove ,应将 Dirty 属性设置为 以 true
指示已修改实现中的 ISessionStateItemCollection 值。
ISessionStateItemCollection如果实现不包含具有指定 name
的 元素,则集合应保持不变,并且不会引发异常。