@@ -957,34 +957,32 @@ public static void SetZoomLevel(this IChromiumWebBrowserBase browser, double zoo
957957 /// Search for text within the current page.
958958 /// </summary>
959959 /// <param name="cefBrowser">The ChromiumWebBrowser instance this method extends.</param>
960- /// <param name="identifier">Can be used in can conjunction with searchText to have multiple searches running simultaneously.</param>
961960 /// <param name="searchText">search text.</param>
962961 /// <param name="forward">indicates whether to search forward or backward within the page.</param>
963962 /// <param name="matchCase">indicates whether the search should be case-sensitive.</param>
964963 /// <param name="findNext">indicates whether this is the first request or a follow-up.</param>
965- public static void Find ( this IBrowser cefBrowser , int identifier , string searchText , bool forward , bool matchCase , bool findNext )
964+ public static void Find ( this IBrowser cefBrowser , string searchText , bool forward , bool matchCase , bool findNext )
966965 {
967966 var host = cefBrowser . GetHost ( ) ;
968967 ThrowExceptionIfBrowserHostNull ( host ) ;
969968
970- host . Find ( identifier , searchText , forward , matchCase , findNext ) ;
969+ host . Find ( searchText , forward , matchCase , findNext ) ;
971970 }
972971
973972 /// <summary>
974973 /// Search for text within the current page.
975974 /// </summary>
976975 /// <param name="browser">The ChromiumWebBrowser instance this method extends.</param>
977- /// <param name="identifier">Can be used in can conjunction with searchText to have multiple searches running simultaneously.</param>
978976 /// <param name="searchText">search text.</param>
979977 /// <param name="forward">indicates whether to search forward or backward within the page.</param>
980978 /// <param name="matchCase">indicates whether the search should be case-sensitive.</param>
981979 /// <param name="findNext">indicates whether this is the first request or a follow-up.</param>
982- public static void Find ( this IChromiumWebBrowserBase browser , int identifier , string searchText , bool forward , bool matchCase , bool findNext )
980+ public static void Find ( this IChromiumWebBrowserBase browser , string searchText , bool forward , bool matchCase , bool findNext )
983981 {
984982 var cefBrowser = browser . BrowserCore ;
985983 cefBrowser . ThrowExceptionIfBrowserNull ( ) ;
986984
987- cefBrowser . Find ( identifier , searchText , forward , matchCase , findNext ) ;
985+ cefBrowser . Find ( searchText , forward , matchCase , findNext ) ;
988986 }
989987
990988 /// <summary>
0 commit comments