EndsWithString Constructor

 

Initializes a new instance of the EndsWithString class.

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

Overload List

Name Description
System_CAPS_pubmethod EndsWithString()

Initializes a new instance of the EndsWithString class.

System_CAPS_pubmethod EndsWithString(InArgument<String>, InArgument<String>)

Initializes a new instance of the EndsWithString class.

System_CAPS_pubmethod EndsWithString(InArgument<String>, InArgument<String>, Boolean)

Initializes a new instance of the EndsWithString class.

See Also

EndsWithString Class
Microsoft.Activities.Expressions Namespace

Return to top

EndsWithString Constructor ()

Initializes a new instance of the EndsWithString class.

Syntax

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

Return to top

EndsWithString Constructor (InArgument<String>, InArgument<String>)

Initializes a new instance of the EndsWithString class.

Syntax

public EndsWithString(
    InArgument<string> input,
    InArgument<string> searchValue
)
public:
EndsWithString(
    InArgument<String^>^ input,
    InArgument<String^>^ searchValue
)
new : 
        input:InArgument<string> *
        searchValue:InArgument<string> -> EndsWithString
Public Sub New (
    input As InArgument(Of String),
    searchValue As InArgument(Of String)
)

Parameters

Return to top

EndsWithString Constructor (InArgument<String>, InArgument<String>, Boolean)

Initializes a new instance of the EndsWithString class.

Syntax

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

Parameters

  • ignoreCase
    Type: System.Boolean

    Whether or not case matters in the comparison.

Return to top