MQStringMessageCompare Enum

Definition

Contains values that control the method of comparison that is used by the Message Queue task when the Message Queue task is receiving a message. To receive a message, the TaskType must be set to DTSMQType_Receiver, and the message type must be set to DTSMQMessageType_String.

public enum class MQStringMessageCompare
public enum MQStringMessageCompare
type MQStringMessageCompare = 
Public Enum MQStringMessageCompare
Inheritance
MQStringMessageCompare

Fields

DTSMQStringMessageCompare_Contains 3

Specifies that the message content must contain the string in the StringCompareValue.

DTSMQStringMessageCompare_Exact 1

Specifies that the message content must exactly match the string in the StringCompareValue.

DTSMQStringMessageCompare_IgnoreCase 2

Specifies whether the comparison distinguishes between uppercase and lowercase letters. When this enumeration value is used, the string comparison ignores case. For example, "ABC" is identical to "abc".

DTSMQStringMessageCompare_None 0

Specifies that no comparison is done.

Applies to