MQStringMessageCompare Enum
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.
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
Name | Value | Description |
---|---|---|
DTSMQStringMessageCompare_None | 0 | Specifies that no comparison is done. |
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_Contains | 3 | Specifies that the message content must contain the string in the StringCompareValue. |