Share via


IsEmptyString Constructor

 

Initializes a new instance of the IsEmptyString class.

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

Overload List

Name Description
System_CAPS_pubmethod IsEmptyString()

Initializes a new instance of the IsEmptyString class.

System_CAPS_pubmethod IsEmptyString(InArgument<String>)

Initializes a new instance of the IsEmptyString class.

System_CAPS_pubmethod IsEmptyString(InArgument<String>, Boolean)

Initializes a new instance of the IsEmptyString class.

See Also

IsEmptyString Class
Microsoft.Activities.Expressions Namespace

Return to top

IsEmptyString Constructor ()

Initializes a new instance of the IsEmptyString class.

Syntax

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

Return to top

IsEmptyString Constructor (InArgument<String>)

Initializes a new instance of the IsEmptyString class.

Syntax

public IsEmptyString(
    InArgument<string> input
)
public:
IsEmptyString(
    InArgument<String^>^ input
)
new : 
        input:InArgument<string> -> IsEmptyString
Public Sub New (
    input As InArgument(Of String)
)

Parameters

Return to top

IsEmptyString Constructor (InArgument<String>, Boolean)

Initializes a new instance of the IsEmptyString class.

Syntax

public IsEmptyString(
    InArgument<string> input,
    bool checkForWhiteSpace
)
public:
IsEmptyString(
    InArgument<String^>^ input,
    bool checkForWhiteSpace
)
new : 
        input:InArgument<string> *
        checkForWhiteSpace:bool -> IsEmptyString
Public Sub New (
    input As InArgument(Of String),
    checkForWhiteSpace As Boolean
)

Parameters

  • checkForWhiteSpace
    Type: System.Boolean

    Whether or not to check white space.

Return to top