MQStringMessageCompare 열거형

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.

네임스페이스:  Microsoft.SqlServer.Dts.Tasks.MessageQueueTask
어셈블리:  Microsoft.SqlServer.MSMQTask(Microsoft.SqlServer.MSMQTask.dll)

구문

‘선언
Public Enumeration MQStringMessageCompare
‘사용 방법
Dim instance As MQStringMessageCompare
public enum MQStringMessageCompare
public enum class MQStringMessageCompare
type MQStringMessageCompare
public enum MQStringMessageCompare

멤버

멤버 이름 설명
DTSMQStringMessageCompare_None Specifies that no comparison is done.
DTSMQStringMessageCompare_Exact Specifies that the message content must exactly match the string in the StringCompareValue.
DTSMQStringMessageCompare_IgnoreCase 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 Specifies that the message content must contain the string in the StringCompareValue.