MessageQueryTable<TItem>.Remove 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除特定对象的匹配项。
重载
Remove(KeyValuePair<MessageQuery,TItem>) |
从集合中移除指定对象的第一个匹配项。 |
Remove(MessageQuery) |
从集合中移除与指定键关联的项。 |
Remove(KeyValuePair<MessageQuery,TItem>)
从集合中移除指定对象的第一个匹配项。
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<System::ServiceModel::Dispatcher::MessageQuery ^, TItem> item);
public bool Remove (System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery,TItem> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Item> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Item> -> bool
Public Function Remove (item As KeyValuePair(Of MessageQuery, TItem)) As Boolean
参数
- item
- KeyValuePair<MessageQuery,TItem>
要从集合中移除的 KeyValuePair<TKey,TValue> 对象。
返回
Boolean如果从集合中成功删除了项,则为
true
;否则为 false
。 如果在集合中找不到该项,此方法也会返回 false
。
实现
适用于
Remove(MessageQuery)
从集合中移除与指定键关联的项。
public:
virtual bool Remove(System::ServiceModel::Dispatcher::MessageQuery ^ key);
public bool Remove (System.ServiceModel.Dispatcher.MessageQuery key);
abstract member Remove : System.ServiceModel.Dispatcher.MessageQuery -> bool
override this.Remove : System.ServiceModel.Dispatcher.MessageQuery -> bool
Public Function Remove (key As MessageQuery) As Boolean
参数
- key
- MessageQuery
要移除的元素的键。
返回
Boolean如果找到了项并已将其删除,则为
true
;如果未找到项,则为 false
。