SqlRuleAction Constructors

Definition

Overloads

SqlRuleAction(String)

Initializes a new instance of the SqlRuleAction class with the specified SQL expression.

SqlRuleAction(String, Int32)

Initializes a new instance of the SqlRuleAction class with the specified SQL expression and compatibility level.

SqlRuleAction(String)

Initializes a new instance of the SqlRuleAction class with the specified SQL expression.

public SqlRuleAction (string sqlExpression);
new Microsoft.ServiceBus.Messaging.SqlRuleAction : string -> Microsoft.ServiceBus.Messaging.SqlRuleAction
Public Sub New (sqlExpression As String)

Parameters

sqlExpression
String

The SQL expression.

Applies to

SqlRuleAction(String, Int32)

Initializes a new instance of the SqlRuleAction class with the specified SQL expression and compatibility level.

public SqlRuleAction (string sqlExpression, int compatibilityLevel);
new Microsoft.ServiceBus.Messaging.SqlRuleAction : string * int -> Microsoft.ServiceBus.Messaging.SqlRuleAction
Public Sub New (sqlExpression As String, compatibilityLevel As Integer)

Parameters

sqlExpression
String

The SQL expression.

compatibilityLevel
Int32

Reserved for future use. An integer value showing compatibility level. Currently hard-coded to 20.

Applies to