Skip to content

Commit f350aef

Browse files
committed
Core - Update IBrowserHost.Find xml doc
Resolves #3210
1 parent a4a345a commit f350aef

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

CefSharp/IBrowserHost.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,17 @@ public interface IBrowserHost : IDisposable
179179
void DragSourceSystemDragEnded();
180180

181181
/// <summary>
182-
/// Search for text
182+
/// Search for <paramref name="searchText"/>.
183183
/// </summary>
184-
/// <param name="identifier">can be used to have multiple searches running simultaniously</param>
184+
/// <param name="identifier">must be a unique ID and these IDs
185+
/// must strictly increase so that newer requests always have greater IDs than
186+
/// older requests. If identifier is zero or less than the previous ID value
187+
/// then it will be automatically assigned a new valid ID. </param>
185188
/// <param name="searchText">text to search for</param>
186189
/// <param name="forward">indicates whether to search forward or backward within the page</param>
187190
/// <param name="matchCase">indicates whether the search should be case-sensitive</param>
188191
/// <param name="findNext">indicates whether this is the first request or a follow-up</param>
189-
/// <remarks>The IFindHandler instance, if any, will be called to report find results. </remarks>
192+
/// <remarks>The <see cref="IFindHandler"/> instance, if any, will be called to report find results.</remarks>
190193
void Find(int identifier, string searchText, bool forward, bool matchCase, bool findNext);
191194

192195
/// <summary>

0 commit comments

Comments
 (0)