SqlFilter Constructors

Definition

Overloads

SqlFilter()

Initializes a new instance of the SqlFilter class.

SqlFilter(String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the SqlFilter class.

SqlFilter()

Initializes a new instance of the SqlFilter class.

public SqlFilter ();
Public Sub New ()

Applies to

SqlFilter(String, Nullable<Int32>, Nullable<Boolean>)

Initializes a new instance of the SqlFilter class.

public SqlFilter (string sqlExpression = default, int? compatibilityLevel = default, bool? requiresPreprocessing = default);
new Microsoft.Azure.Management.ServiceBus.Models.SqlFilter : string * Nullable<int> * Nullable<bool> -> Microsoft.Azure.Management.ServiceBus.Models.SqlFilter
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

The SQL expression. e.g. MyProperty='ABC'

compatibilityLevel
Nullable<Int32>

This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20.

requiresPreprocessing
Nullable<Boolean>

Value that indicates whether the rule action requires preprocessing.

Applies to