@@ -48,70 +48,6 @@ public BackOfficeExamineSearcher(
4848 _appCaches = appCaches ;
4949 }
5050
51- [ Obsolete ( "Please use the non-obsolete constructor. Will be removed in V18." ) ]
52- public BackOfficeExamineSearcher (
53- IExamineManager examineManager ,
54- ILocalizationService languageService ,
55- IBackOfficeSecurityAccessor backOfficeSecurityAccessor ,
56- IEntityService entityService ,
57- IUmbracoTreeSearcherFields treeSearcherFields ,
58- AppCaches appCaches ,
59- IUmbracoMapper umbracoMapper ,
60- IPublishedUrlProvider publishedUrlProvider )
61- : this (
62- examineManager ,
63- StaticServiceProvider . Instance . GetRequiredService < ILanguageService > ( ) ,
64- backOfficeSecurityAccessor ,
65- entityService ,
66- treeSearcherFields ,
67- appCaches )
68- {
69- }
70-
71- [ Obsolete ( "Please use the non-obsolete constructor. Will be removed in V18." ) ]
72- public BackOfficeExamineSearcher (
73- IExamineManager examineManager ,
74- ILocalizationService localizationService ,
75- ILanguageService languageService ,
76- IBackOfficeSecurityAccessor backOfficeSecurityAccessor ,
77- IEntityService entityService ,
78- IUmbracoTreeSearcherFields treeSearcherFields ,
79- AppCaches appCaches ,
80- IUmbracoMapper umbracoMapper ,
81- IPublishedUrlProvider publishedUrlProvider )
82- : this (
83- examineManager ,
84- languageService ,
85- backOfficeSecurityAccessor ,
86- entityService ,
87- treeSearcherFields ,
88- appCaches )
89- {
90- }
91-
92- [ Obsolete ( "Please use the method that accepts all parameters. Will be removed in V17." ) ]
93- public IEnumerable < ISearchResult > Search (
94- string query ,
95- UmbracoEntityTypes entityType ,
96- int pageSize ,
97- long pageIndex ,
98- out long totalFound ,
99- string ? searchFrom = null ,
100- bool ignoreUserStartNodes = false )
101- => Search ( query , entityType , pageSize , pageIndex , out totalFound , null , null , searchFrom , ignoreUserStartNodes ) ;
102-
103- [ Obsolete ( "Please use the method that accepts all parameters. Will be removed in V17." ) ]
104- public IEnumerable < ISearchResult > Search (
105- string query ,
106- UmbracoEntityTypes entityType ,
107- int pageSize ,
108- long pageIndex ,
109- out long totalFound ,
110- string [ ] ? contentTypeAliases ,
111- string ? searchFrom = null ,
112- bool ignoreUserStartNodes = false )
113- => Search ( query , entityType , pageSize , pageIndex , out totalFound , contentTypeAliases , null , searchFrom , ignoreUserStartNodes ) ;
114-
11551 public IEnumerable < ISearchResult > Search (
11652 string query ,
11753 UmbracoEntityTypes entityType ,
0 commit comments