IndexesOperationsExtensions.ListNamesAsync メソッド

定義

検索サービスで使用できるすべてのインデックスの名前を一覧表示します。 インデックス名のみが必要な場合は、List() の代わりにこれを使用します。 特に Search Service に多数のインデックスがある場合は、帯域幅とリソース使用率が節約されます。 https://docs.microsoft.com/rest/api/searchservice/List-Indexes

public static System.Threading.Tasks.Task<System.Collections.Generic.IList<string>> ListNamesAsync (this Microsoft.Azure.Search.IIndexesOperations operations, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default, System.Threading.CancellationToken cancellationToken = default);
static member ListNamesAsync : Microsoft.Azure.Search.IIndexesOperations * Microsoft.Azure.Search.Models.SearchRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<string>>
<Extension()>
Public Function ListNamesAsync (operations As IIndexesOperations, Optional searchRequestOptions As SearchRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of String))

パラメーター

operations
IIndexesOperations

この拡張メソッドの操作グループ。

searchRequestOptions
SearchRequestOptions

操作の追加パラメーター。

cancellationToken
CancellationToken

キャンセル トークン。

戻り値

検索サービスのすべてのインデックス名の一覧。

適用対象