IndexerOperationsExtensions.Get 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 IndexerDefinitionResponse Get(
    this IIndexerOperations operations,
    string indexerName
)
public:
[ExtensionAttribute]
static IndexerDefinitionResponse^ Get(
    IIndexerOperations^ operations,
    String^ indexerName
)
static member Get : 
        operations:IIndexerOperations *
        indexerName:string -> IndexerDefinitionResponse
<ExtensionAttribute>
Public Shared Function Get (
    operations As IIndexerOperations,
    indexerName As String
) As IndexerDefinitionResponse

Parameters

  • indexerName
    Type: System.String

    Required. The name of the indexer to retrieve.

Return Value

Type: Microsoft.Azure.Search.Models.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