コード例 #1
0
 public static Task <ContentSearchResult <T> > GetContentResultsAsync <T>(this IElasticSearchService <T> service, bool requirePageTemplate) where T : IContentData
 => service.GetContentResultsAsync(requirePageTemplate, new string[0]);
コード例 #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);
コード例 #3
0
 public static Task <ContentSearchResult <T> > GetContentResultsAsync <T>(this IElasticSearchService <T> service) where T : IContentData
 => service.GetContentResultsAsync(false, new string[0]);