IndexOperationsExtensions.Get Method (IIndexOperations, String)

 

Applies To: Microsoft Azure

Retrieves an index definition from Azure Search. (see https://msdn.microsoft.com/library/azure/dn798939.aspx for more information)

Namespace:   Microsoft.Azure.Search
Assembly:  Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Syntax

public static IndexDefinitionResponse Get(
    this IIndexOperations operations,
    string indexName
)
public:
[ExtensionAttribute]
static IndexDefinitionResponse^ Get(
    IIndexOperations^ operations,
    String^ indexName
)
static member Get : 
        operations:IIndexOperations *
        indexName:string -> IndexDefinitionResponse
<ExtensionAttribute>
Public Shared Function Get (
    operations As IIndexOperations,
    indexName As String
) As IndexDefinitionResponse

Parameters

  • indexName
    Type: System.String

    Required. The name of the index to retrieve.

Return Value

Type: Microsoft.Azure.Search.Models.IndexDefinitionResponse

Response from a Create, Update, or Get Index request. If successful, it includes the full definition of the index that was created, updated, or retrieved.

See Also

IndexOperationsExtensions Class
Microsoft.Azure.Search Namespace

Return to top