NameScope.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除特定对象。
重载
Remove(KeyValuePair<String,Object>) |
从集合中移除特定对象。 |
Remove(String) |
从集合中移除指定名称的映射。 |
Remove(KeyValuePair<String,Object>)
从集合中移除特定对象。
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Remove (item As KeyValuePair(Of String, Object)) As Boolean
参数
- item
- KeyValuePair<String,Object>
要从集合中移除的对象,指定为 KeyValuePair<TKey,TValue>(键为 String,值为 Object)。
返回
如果从集合中成功移除了项,则为 true
;否则为 false
。 如果在集合中没有找到该项,还会返回 false
。
实现
注解
因为 NameScope 是字典,因此没有首次出现的概念;任何给定 KeyValuePair<TKey,TValue> 项都保证是唯一的。
适用于
Remove(String)
从集合中移除指定名称的映射。
public:
virtual bool Remove(System::String ^ key);
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean
参数
- key
- String
字符串键,这是要移除的 XAML 名称范围映射的名称。
返回
如果从集合中成功移除了项,则为 true
;否则为 false
。 如果在集合中没有找到该项,还会返回 false
。
实现
注解
此方法基本上会UnregisterName包装 ,否则会在 中UnregisterName引发异常的情况下返回 false
。