File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ namespace Microsoft.Web.WebView2.Core
395395}
396396```
397397
398- ### CoreWebView2 Find Interface and Usage
398+ ### CoreWebView2 Find Interface
399399
400400``` csharp
401401namespace Microsoft .Web .WebView2 .Core
@@ -437,24 +437,6 @@ namespace Microsoft.Web.WebView2.Core
437437 {
438438 CoreWebView2FindConfiguration CreateFindConfiguration ();
439439 };
440-
441-
442- // Example usage:
443- public async Task PerformFindOperationAsync (ICoreWebView2Find webViewFind )
444- {
445- var findConfig = new CoreWebView2FindConfiguration
446- {
447- FindTerm = " example" ,
448- FindDirection = CoreWebView2FindDirection .Forward ,
449- IsCaseSensitive = false ,
450- ShouldMatchWord = true
451- };
452-
453- await webViewFind .StartFindAsync (findConfig );
454- await webViewFind .FindNextAsync ();
455- await webViewFind .FindNextAsync ();
456- await webViewFind .StopFindAsync ();
457- }
458440}
459441```
460442
You can’t perform that action at this time.
0 commit comments