Example #1
0
        public static Task UnfreezePlanAsync(this ISearchIndexManager manager, string indexName, Action <UnfreezePlanSearchIndexOptions> configureOptions)
        {
            var options = new UnfreezePlanSearchIndexOptions();

            configureOptions(options);

            return(manager.UnfreezePlanAsync(indexName, options));
        }
Example #2
0
 public static Task UnfreezePlanAsync(this ISearchIndexManager manager, string indexName)
 {
     return(manager.UnfreezePlanAsync(indexName, UnfreezePlanSearchIndexOptions.Default));
 }