RuleSet Constructors

Definition

Initializes a new instance of the RuleSet class.

Overloads

RuleSet()

Initializes a new instance of the RuleSet class.

RuleSet(String)

Initializes a new instance of the RuleSet class by using the name of the RuleSet.

RuleSet(String, String)

Initializes a new instance of the RuleSet class by using the name and description of the RuleSet.

RuleSet()

Initializes a new instance of the RuleSet class.

public:
 RuleSet();
public RuleSet ();
Public Sub New ()

Applies to

RuleSet(String)

Initializes a new instance of the RuleSet class by using the name of the RuleSet.

public:
 RuleSet(System::String ^ name);
public RuleSet (string name);
new System.Workflow.Activities.Rules.RuleSet : string -> System.Workflow.Activities.Rules.RuleSet
Public Sub New (name As String)

Parameters

name
String

The name of the RuleSet.

Applies to

RuleSet(String, String)

Initializes a new instance of the RuleSet class by using the name and description of the RuleSet.

public:
 RuleSet(System::String ^ name, System::String ^ description);
public RuleSet (string name, string description);
new System.Workflow.Activities.Rules.RuleSet : string * string -> System.Workflow.Activities.Rules.RuleSet
Public Sub New (name As String, description As String)

Parameters

name
String

The name of the RuleSet.

description
String

A description of the RuleSet.

Applies to