Class QueryOptions
- Namespace
- PuppeteerSharp
- Assembly
- PuppeteerSharp.dll
Options for query operations like QuerySelectorAllAsync(string, QueryOptions).
public class QueryOptions
- Inheritance
-
QueryOptions
Properties
Isolate
Whether to run the query in isolation. When returning many elements from QuerySelectorAllAsync(string, QueryOptions) or similar methods, it might be useful to turn off the isolation to improve performance. By default, the querying code will be executed in a separate sandbox realm.
public bool Isolate { get; set; }
Property Value
- bool
Defaults to
true.