WebSocketMessage VerifyContains Method (String, Boolean)C# API
Determines whether the content of this WebSocketMessage contains the specified text, specifying whether the search will be case-sensitive.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public bool VerifyContains(
	string text,
	bool caseSensitive
)

Parameters

text
Type: System String
The text to look for.
caseSensitive
Type: System Boolean
true if the search should be case-sensitive.

Return Value

true if the text was found; otherwise, false.
Examples

The following example demonstrates verifying that a string appears within the content of a message.
// Check that the login succeeded. 
if (!webSocketMessage.VerifyContains("Login successful", false))
{
    Error("Login failed");
    NextIteration();
}
See Also