This documentation is archived and is not being maintained.
RuleConditionCollection Class
Visual Studio 2008
Contains a collection of RuleCondition classes defined on the workflow. This class cannot be inherited.
Assembly: System.Workflow.Activities (in System.Workflow.Activities.dll)
The following code example shows how to dynamically update a condition that is part of the RuleConditionCollection. This code example is part of the ChangingRules SDK Sample from the Program.cs file. For more information, see Changing Rules.
<Serializable()> _
Public Class OrderEventArgs
Inherits ExternalDataEventArgs
Private orderIdValue As String
Public Sub New(ByVal instanceId As Guid, ByVal orderId As String)
MyBase.New(instanceId)
orderIdValue = orderId
End Sub
Public Property OrderId() As String
Get
Return orderIdValue
End Get
Set(ByVal value As String)
orderIdValue = value
End Set
End Property
End Class
System.Object
System.Collections.ObjectModel.Collection(Of RuleCondition)
System.Collections.ObjectModel.KeyedCollection(Of String, RuleCondition)
System.Workflow.Activities.Rules.RuleConditionCollection
System.Collections.ObjectModel.Collection(Of RuleCondition)
System.Collections.ObjectModel.KeyedCollection(Of String, RuleCondition)
System.Workflow.Activities.Rules.RuleConditionCollection
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: