This documentation is archived and is not being maintained.

RuleConditionCollection Class

Contains a collection of RuleCondition classes defined on the workflow. This class cannot be inherited.

Namespace:  System.Workflow.Activities.Rules
Assembly:  System.Workflow.Activities (in System.Workflow.Activities.dll)

'Declaration
<SerializableAttribute> _
Public NotInheritable Class RuleConditionCollection _
	Inherits KeyedCollection(Of String, RuleCondition) _
	Implements IWorkflowChangeDiff
'Usage
Dim instance As RuleConditionCollection

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

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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.

.NET Framework

Supported in: 3.5, 3.0
Show: