ActivityTrackingCondition 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.
Initializes a new instance of the ActivityTrackingCondition class.
Overloads
ActivityTrackingCondition() |
Initializes a new instance of the ActivityTrackingCondition class. |
ActivityTrackingCondition(String, String) |
Initializes a new instance of the ActivityTrackingCondition class by specifying an activity member and a value for comparison. |
ActivityTrackingCondition()
Initializes a new instance of the ActivityTrackingCondition class.
public:
ActivityTrackingCondition();
public ActivityTrackingCondition ();
Public Sub New ()
Remarks
If you use the parameterless constructor, you must explicitly set Member. You must also set Value. The default value of Operator is Equals
.
Applies to
ActivityTrackingCondition(String, String)
Initializes a new instance of the ActivityTrackingCondition class by specifying an activity member and a value for comparison.
public:
ActivityTrackingCondition(System::String ^ member, System::String ^ value);
public ActivityTrackingCondition (string member, string value);
new System.Workflow.Runtime.Tracking.ActivityTrackingCondition : string * string -> System.Workflow.Runtime.Tracking.ActivityTrackingCondition
Public Sub New (member As String, value As String)
Parameters
- member
- String
The dot delineated name of an activity member.
- value
- String
The value to be compared.
Exceptions
member
is a null reference (Nothing
in Visual Basic).
Remarks
Member is set to member
, and Value is set to value
. The default value of Operator is Equals
.