Finds the specified text within this WebSocketMessage,
             starting from the end of the content,
             
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.8.37 (1.0.0.0)
Syntax
public bool Rfind( ExtractionCursor cursor, string text )
Parameters
- cursor
- Type: Facilita.Native ExtractionCursor
 An ExtractionCursor object to store the success/failure of the action, and the index in the message at which the match was found.
- text
- Type: System String
 The text to search for.
Return Value
true if the specified text was found in this WebSocketMessage; otherwise, false.Remarks
|  Note | 
|---|
| The search is case-sensitive. | 
Examples
ExtractionCursor cursor = new ExtractionCursor(); if (!webSocketMessage.Rfind(cursor, "some text")) { Warn("some text not found: " + cursor.ErrorMessage); NextIteration(); } WriteMessage(string.Format("Text found at position {0}", cursor.Index));
See Also