MessageQueryTable<TItem>.Evaluate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Runs a query against the message and returns a result.
Overloads
Evaluate<TResult>(MessageBuffer) |
Runs a query against the message and returns the result. |
Evaluate<TResult>(Message) |
Runs a query against the message and returns a collection of results. The body cannot be queried. |
Evaluate<TResult>(MessageBuffer)
Runs a query against the message and returns the result.
public:
generic <typename TResult>
System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::ServiceModel::Dispatcher::MessageQuery ^, TResult>> ^ Evaluate(System::ServiceModel::Channels::MessageBuffer ^ buffer);
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery,TResult>> Evaluate<TResult> (System.ServiceModel.Channels.MessageBuffer buffer);
member this.Evaluate : System.ServiceModel.Channels.MessageBuffer -> seq<System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Result>>
Public Function Evaluate(Of TResult) (buffer As MessageBuffer) As IEnumerable(Of KeyValuePair(Of MessageQuery, TResult))
Type Parameters
- TResult
The type of the result to return.
Parameters
- buffer
- MessageBuffer
The message to query.
Returns
The result of the query. Multiple results can be enumerated through.
Applies to
Evaluate<TResult>(Message)
Runs a query against the message and returns a collection of results. The body cannot be queried.
public:
generic <typename TResult>
System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::ServiceModel::Dispatcher::MessageQuery ^, TResult>> ^ Evaluate(System::ServiceModel::Channels::Message ^ message);
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery,TResult>> Evaluate<TResult> (System.ServiceModel.Channels.Message message);
member this.Evaluate : System.ServiceModel.Channels.Message -> seq<System.Collections.Generic.KeyValuePair<System.ServiceModel.Dispatcher.MessageQuery, 'Result>>
Public Function Evaluate(Of TResult) (message As Message) As IEnumerable(Of KeyValuePair(Of MessageQuery, TResult))
Type Parameters
- TResult
The type of the result to return.
Parameters
- message
- Message
The message to query.
Returns
The enumerable collection of results.