RuleDescription 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
RuleDescription() |
Initializes a new instance of the RuleDescription class with default values. |
RuleDescription(Filter) |
Initializes a new instance of the RuleDescription class with the specified filter expression. |
RuleDescription(String) |
Initializes a new instance of the RuleDescription class with the specified name. |
RuleDescription(String, Filter) |
Initializes a new instance of the RuleDescription class with the specified name and filter expression. |
RuleDescription()
Initializes a new instance of the RuleDescription class with default values.
public RuleDescription ();
Public Sub New ()
Applies to
RuleDescription(Filter)
Initializes a new instance of the RuleDescription class with the specified filter expression.
public RuleDescription (Microsoft.ServiceBus.Messaging.Filter filter);
new Microsoft.ServiceBus.Messaging.RuleDescription : Microsoft.ServiceBus.Messaging.Filter -> Microsoft.ServiceBus.Messaging.RuleDescription
Public Sub New (filter As Filter)
Parameters
- filter
- Filter
The filter expression used to match messages.
Applies to
RuleDescription(String)
Initializes a new instance of the RuleDescription class with the specified name.
public RuleDescription (string name);
new Microsoft.ServiceBus.Messaging.RuleDescription : string -> Microsoft.ServiceBus.Messaging.RuleDescription
Public Sub New (name As String)
Parameters
- name
- String
The name of the rule.
Applies to
RuleDescription(String, Filter)
Initializes a new instance of the RuleDescription class with the specified name and filter expression.
public RuleDescription (string name, Microsoft.ServiceBus.Messaging.Filter filter);
new Microsoft.ServiceBus.Messaging.RuleDescription : string * Microsoft.ServiceBus.Messaging.Filter -> Microsoft.ServiceBus.Messaging.RuleDescription
Public Sub New (name As String, filter As Filter)
Parameters
- name
- String
The name of the rule.
- filter
- Filter
The filter expression used to match messages.