예제 #1
0
        public async static Task <IDeleteIndexResponse> DeleteIndexAsync(string elasticSearchConnectionString, string index)
        {
            var req = new DeleteIndexRequest(index);

            var client = new Nest.ElasticClient(new Uri(elasticSearchConnectionString));

            return(await client.DeleteIndexAsync(req));
        }