Share via


And Constructor

 

Initializes a new instance of the And class.

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

Overload List

Name Description
System_CAPS_pubmethod And()

Initializes a new instance of the And class.

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

Initializes a new instance of the And class.

See Also

And Class
Microsoft.Activities.Expressions Namespace

Return to top

And Constructor ()

Initializes a new instance of the And class.

Syntax

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

Return to top

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

Initializes a new instance of the And class.

Syntax

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

Parameters

Return to top