Share via


Or Constructor

 

Initializes a new instance of the Or class.

Namespace:   Microsoft.Activities.Expressions
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Overload List

Name Description
System_CAPS_pubmethod Or()

Initializes a new instance of the Or class.

System_CAPS_pubmethod Or(InArgument<Boolean>, InArgument<Boolean>)

Initializes a new instance of the Or class.

See Also

Or Class
Microsoft.Activities.Expressions Namespace

Return to top

Or Constructor ()

Initializes a new instance of the Or class.

Syntax

public Or()
public:
Or()
new : unit -> Or
Public Sub New

Return to top

Or Constructor (InArgument<Boolean>, InArgument<Boolean>)

Initializes a new instance of the Or class.

Syntax

public Or(
    InArgument<bool> left,
    InArgument<bool> right
)
public:
Or(
    InArgument<bool>^ left,
    InArgument<bool>^ right
)
new : 
        left:InArgument<bool> *
        right:InArgument<bool> -> Or
Public Sub New (
    left As InArgument(Of Boolean),
    right As InArgument(Of Boolean)
)

Parameters

Return to top