mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-26 08:52:26 +00:00
25 lines
774 B
C#
25 lines
774 B
C#
|
|
namespace ElectronNET.API.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Options for <see cref="WebContents.FindInPageAsync"/>.
|
||
|
|
/// </summary>
|
||
|
|
public class FindInPageOptions
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Whether to search forward or backward, defaults to true.
|
||
|
|
/// </summary>
|
||
|
|
public bool? Forward { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Whether to begin a new text finding session with this request. Should be true
|
||
|
|
/// for initial requests, and false for subsequent requests. Defaults to false.
|
||
|
|
/// </summary>
|
||
|
|
public bool? FindNext { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Whether search should be case-sensitive, defaults to false.
|
||
|
|
/// </summary>
|
||
|
|
public bool? MatchCase { get; set; }
|
||
|
|
}
|
||
|
|
}
|