Exemplo n.º 1
0
 public static Task <ContentSearchResult <T> > GetContentResultsAsync <T>(this IElasticSearchService <T> service, bool requirePageTemplate) where T : IContentData
 => service.GetContentResultsAsync(requirePageTemplate, new string[0]);
Exemplo n.º 2
0
 public static Task <ContentSearchResult <T> > GetContentResultsAsync <T>(this IElasticSearchService <T> service, bool requirePageTemplate, string[] providerNames) where T : IContentData
 => service.GetContentResultsAsync(CancellationToken.None, requirePageTemplate, false, providerNames, true, true);
Exemplo n.º 3
0
 public static Task <ContentSearchResult <T> > GetContentResultsAsync <T>(this IElasticSearchService <T> service) where T : IContentData
 => service.GetContentResultsAsync(false, new string[0]);