IsEqualString Class
An activity to check if two strings match, optionally based on a regular expressions pattern.
Namespace: Microsoft.Activities.Expressions
Assembly: Microsoft.Activities (in Microsoft.Activities.dll)
Inheritance Hierarchy
System.Object
System.Activities.Activity
System.Activities.ActivityWithResult
System.Activities.Activity<TResult>
System.Activities.CodeActivity<TResult>
Microsoft.Activities.Expressions.IsEqualString
Syntax
public sealed class IsEqualString : CodeActivity<bool>
public ref class IsEqualString sealed : CodeActivity<bool>
[<Sealed>]
type IsEqualString =
class
inherit CodeActivity<bool>
end
Public NotInheritable Class IsEqualString
Inherits CodeActivity(Of Boolean)
Constructors
Name | Description | |
---|---|---|
IsEqualString() | Initializes a new instance of the IsEqualString class. |
|
IsEqualString(InArgument<String>, InArgument<String>) | Initializes a new instance of the IsEqualString class. |
Properties
Name | Description | |
---|---|---|
CacheId | (Inherited from Activity.) |
|
DisplayName | (Inherited from Activity.) |
|
Id | (Inherited from Activity.) |
|
IgnoreCase | Gets or sets whether or not to ignore the case. |
|
ImplementationVersion | (Inherited from CodeActivity<TResult>.) |
|
Input | Gets or sets the input string. |
|
Pattern | Gets or sets the regular expression pattern to use. |
|
Result | (Inherited from Activity<TResult>.) |
|
ResultType | (Inherited from ActivityWithResult.) |
|
Text | Gets or sets the target text to match. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
ToString() | (Inherited from Activity.) |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.Activities.Expressions Namespace
Return to top