CorrelationQuery Class

Definition

Represents a Where clause and a Select clause that identify the unique characteristics of a message so that it can be routed to the correct instance.

public ref class CorrelationQuery
public class CorrelationQuery
type CorrelationQuery = class
Public Class CorrelationQuery
Inheritance
CorrelationQuery

Remarks

A CorrelationQuery is a set of queries that are run on an incoming or outgoing message to generate a set of instance keys. An InstanceKey represents an association between the data selected from the query and a particular service instance.

The Where clause allows the user to filter the set of messages that this CorrelationQuery runs on. The Select clause represents the query set used to uniquely identify the service instance for which an incoming message should be dispatched. The SelectAdditional clauses are a set of query sets that represent new instance keys that must be created to associate that data with the service instance.

Constructors

CorrelationQuery()

Initializes a new instance of the CorrelationQuery class.

Properties

Select

Gets or sets the MessageQuerySet that contains the elements in the message that compose the instance key that uniquely identifies the message.

SelectAdditional

Gets a collection of clauses, each of which defines the set of elements in the message that make up an associated key.

Where

Gets or sets the MessageFilter that defines the set of messages for which this query applies.

Methods

Equals(Object)

Determines whether the current CorrelationQuery is equal to the specified object.

GetHashCode()

Returns the hash code for the current CorrelationQuery.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to