MessageFilterTable<TFilterData>.GetMatchingValues 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示指定的消息或缓冲消息是否满足表中至少一个筛选器的匹配条件,并将匹配筛选器的 FilterData
添加到集合中。
重载
GetMatchingValues(Message, ICollection<TFilterData>) |
返回一个值,该值指示指定的消息或缓冲消息是否满足表中至少一个筛选器的匹配条件,并将匹配筛选器的 |
GetMatchingValues(MessageBuffer, ICollection<TFilterData>) |
返回一个值,该值指示指定的消息缓冲区是否满足表中一个筛选器的匹配条件,并将匹配筛选器的 |
注解
如果预期有多个筛选器与消息或缓冲消息匹配,并且只需要 FilterData
,请使用此方法。
GetMatchingValues(Message, ICollection<TFilterData>)
返回一个值,该值指示指定的消息或缓冲消息是否满足表中至少一个筛选器的匹配条件,并将匹配筛选器的 FilterData
添加到集合中。
public:
virtual bool GetMatchingValues(System::ServiceModel::Channels::Message ^ message, System::Collections::Generic::ICollection<TFilterData> ^ results);
public bool GetMatchingValues (System.ServiceModel.Channels.Message message, System.Collections.Generic.ICollection<TFilterData> results);
abstract member GetMatchingValues : System.ServiceModel.Channels.Message * System.Collections.Generic.ICollection<'FilterData> -> bool
override this.GetMatchingValues : System.ServiceModel.Channels.Message * System.Collections.Generic.ICollection<'FilterData> -> bool
Public Function GetMatchingValues (message As Message, results As ICollection(Of TFilterData)) As Boolean
参数
- results
- ICollection<TFilterData>
一般 ICollection<T><FilterData
>中存储匹配操作筛选器 FilterData
的引用参数。
返回
如果消息满足表中一个筛选器的匹配条件,则 true
;如果未满足筛选器,则 false
。
实现
例外
results
null
。
筛选器尝试检查消息正文的内容。
注解
当预期有多个筛选器与消息匹配时,请使用此方法,仅需要 FilterData
,并且不会检查消息正文。
匹配 MessageFilter 对象的 FilterData
存储在 ICollection<T>的 results
参数中。
此方法实现 GetMatchingValues。
适用于
GetMatchingValues(MessageBuffer, ICollection<TFilterData>)
返回一个值,该值指示指定的消息缓冲区是否满足表中一个筛选器的匹配条件,并将匹配筛选器的 FilterData
添加到 results
集合。
public:
virtual bool GetMatchingValues(System::ServiceModel::Channels::MessageBuffer ^ buffer, System::Collections::Generic::ICollection<TFilterData> ^ results);
public bool GetMatchingValues (System.ServiceModel.Channels.MessageBuffer buffer, System.Collections.Generic.ICollection<TFilterData> results);
abstract member GetMatchingValues : System.ServiceModel.Channels.MessageBuffer * System.Collections.Generic.ICollection<'FilterData> -> bool
override this.GetMatchingValues : System.ServiceModel.Channels.MessageBuffer * System.Collections.Generic.ICollection<'FilterData> -> bool
Public Function GetMatchingValues (buffer As MessageBuffer, results As ICollection(Of TFilterData)) As Boolean
参数
- buffer
- MessageBuffer
要测试的 MessageBuffer。
- results
- ICollection<TFilterData>
存储 buffer
满足的筛选器的筛选器数据的引用参数。
返回
如果缓冲消息满足表中一个 ActionMessageFilter 的匹配条件,则 true
;如果未满足任何筛选器,false
。
实现
例外
results
null
。
注解
如果预期有多个筛选器与缓冲消息匹配,并且只需要 FilterData
,请使用此方法。
匹配 MessageFilter 对象的 FilterData
存储在 results
ICollection<T>中。
此方法实现 GetMatchingValues。