SqlRuleAction Constructors
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.
Overloads
SqlRuleAction() |
Initializes a new instance of the SqlRuleAction class. |
SqlRuleAction(String, Nullable<Int32>, Nullable<Boolean>) |
Initializes a new instance of the SqlRuleAction class. |
SqlRuleAction()
Initializes a new instance of the SqlRuleAction class.
public SqlRuleAction ();
Public Sub New ()
Applies to
SqlRuleAction(String, Nullable<Int32>, Nullable<Boolean>)
Initializes a new instance of the SqlRuleAction class.
public SqlRuleAction (string sqlExpression = default, int? compatibilityLevel = default, bool? requiresPreprocessing = default);
new Microsoft.Azure.Management.ServiceBus.Models.SqlRuleAction : string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.ServiceBus.Models.SqlRuleAction
Public Sub New (Optional sqlExpression As String = Nothing, Optional compatibilityLevel As Nullable(Of Integer) = Nothing, Optional requiresPreprocessing As Nullable(Of Boolean) = Nothing)
Parameters
- sqlExpression
- String
SQL expression. e.g. MyProperty='ABC'
This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20.
Value that indicates whether the rule action requires preprocessing.
Applies to
Azure SDK for .NET