UITestAction.Equality Operator (UITestAction, UITestAction)
equivalentCodeEntity
M:Microsoft.VisualStudio.TestTools.UITest.Common.UITestAction.Equals(System.Object)
Overrides the "==" operator for comparing two UI test action objects.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
public static bool operator ==(
UITestAction left,
UITestAction right
)
public:
static bool operator ==(
UITestAction^ left,
UITestAction^ right
)
static let inline (=)
left:UITestAction *
right:UITestAction : bool
Public Shared Operator = (
left As UITestAction,
right As UITestAction
) As Boolean
Parameters
left
Type: Microsoft.VisualStudio.TestTools.UITest.Common.UITestActionThe UITestAction object on the left of the equality expression.
right
Type: Microsoft.VisualStudio.TestTools.UITest.Common.UITestActionThe UITestAction object on the right of the equality expression.
Return Value
Type: System.Boolean
true if the two objects are equal; otherwise, false.
See Also
UITestAction Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top