CorrelationActionMessageFilter.Match 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.
Determines whether a message's action matches the Action of this CorrelationActionMessageFilter.
Overloads
Match(Message) |
Determines whether the specified message's action matches the Action of this CorrelationActionMessageFilter. |
Match(MessageBuffer) |
Determines whether the action of the message contained by the specified message buffer matches the Action of this CorrelationActionMessageFilter. |
Remarks
A message's action is specified by the Action property of the message's Headers.
Match(Message)
Determines whether the specified message's action matches the Action of this CorrelationActionMessageFilter.
public:
override bool Match(System::ServiceModel::Channels::Message ^ message);
public override bool Match (System.ServiceModel.Channels.Message message);
override this.Match : System.ServiceModel.Channels.Message -> bool
Public Overrides Function Match (message As Message) As Boolean
Parameters
- message
- Message
The message to compare.
Returns
true
if the action matches; otherwise, false
.
Remarks
A message's action is specified by the Action property of the message's Headers.
Applies to
Match(MessageBuffer)
Determines whether the action of the message contained by the specified message buffer matches the Action of this CorrelationActionMessageFilter.
public:
override bool Match(System::ServiceModel::Channels::MessageBuffer ^ messageBuffer);
public override bool Match (System.ServiceModel.Channels.MessageBuffer messageBuffer);
override this.Match : System.ServiceModel.Channels.MessageBuffer -> bool
Public Overrides Function Match (messageBuffer As MessageBuffer) As Boolean
Parameters
- messageBuffer
- MessageBuffer
The message buffer that contains the message to compare.
Returns
true
if the action matches; otherwise, false
.
Remarks
A message's action is specified by the Action property of the message's Headers.