IndexerOperationsExtensions.GetAsync Method (IIndexerOperations, String)
Applies To: Microsoft Azure
Retrieves an indexer definition from Azure Search. (see https://msdn.microsoft.com/library/azure/dn946874.aspx for more information)
Namespace: Microsoft.Azure.Search
Assembly: Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)
Syntax
public static Task<IndexerDefinitionResponse> GetAsync(
this IIndexerOperations operations,
string indexerName
)
public:
[ExtensionAttribute]
static Task<IndexerDefinitionResponse^>^ GetAsync(
IIndexerOperations^ operations,
String^ indexerName
)
static member GetAsync :
operations:IIndexerOperations *
indexerName:string -> Task<IndexerDefinitionResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As IIndexerOperations,
indexerName As String
) As Task(Of IndexerDefinitionResponse)
Parameters
operations
Type: Microsoft.Azure.Search.IIndexerOperationsReference to the Microsoft.Azure.Search.IIndexerOperations.
indexerName
Type: System.StringRequired. The name of the indexer to retrieve.
Return Value
Type: System.Threading.Tasks.Task<IndexerDefinitionResponse>
Response from a Create, Update, or Get Indexer request. If successful, it includes the full definition of the indexer that was created, updated, or retrieved.
See Also
IndexerOperationsExtensions Class
Microsoft.Azure.Search Namespace
Return to top