From ba282ab81ab7ec85b3a6bf54c1c7a2d7adbae100 Mon Sep 17 00:00:00 2001 From: Stephan Date: Fri, 11 Jan 2019 08:26:53 +0100 Subject: [PATCH] Comments --- src/Umbraco.Web/IPublishedContentQuery.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Umbraco.Web/IPublishedContentQuery.cs b/src/Umbraco.Web/IPublishedContentQuery.cs index c3a065b9dc..76e7be5e97 100644 --- a/src/Umbraco.Web/IPublishedContentQuery.cs +++ b/src/Umbraco.Web/IPublishedContentQuery.cs @@ -40,6 +40,7 @@ namespace Umbraco.Web /// Optional index name. /// /// When the is not specified, all cultures are searched. + /// While enumerating results, the ambient culture is changed to be the searched culture. /// IEnumerable Search(string term, string culture = null, string indexName = null); @@ -54,17 +55,24 @@ namespace Umbraco.Web /// Optional index name. /// /// When the is not specified, all cultures are searched. + /// While enumerating results, the ambient culture is changed to be the searched culture. /// IEnumerable Search(string term, int skip, int take, out long totalRecords, string culture = null, string indexName = null); /// /// Executes the query and converts the results to PublishedSearchResult. /// + /// + /// While enumerating results, the ambient culture is changed to be the searched culture. + /// IEnumerable Search(IQueryExecutor query); /// /// Executes the query and converts the results to PublishedSearchResult. /// + /// + /// While enumerating results, the ambient culture is changed to be the searched culture. + /// IEnumerable Search(IQueryExecutor query, int skip, int take, out long totalRecords); } }