IndexerOperationsExtensions.GetStatusAsync Method (IIndexerOperations, String)

 

Applies To: Microsoft Azure

Returns the current status and execution history of an indexer. (see https://msdn.microsoft.com/library/azure/dn946884.aspx for more information)

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

Syntax

public static Task<IndexerGetStatusResponse> GetStatusAsync(
    this IIndexerOperations operations,
    string indexerName
)
public:
[ExtensionAttribute]
static Task<IndexerGetStatusResponse^>^ GetStatusAsync(
    IIndexerOperations^ operations,
    String^ indexerName
)
static member GetStatusAsync : 
        operations:IIndexerOperations *
        indexerName:string -> Task<IndexerGetStatusResponse>
<ExtensionAttribute>
Public Shared Function GetStatusAsync (
    operations As IIndexerOperations,
    indexerName As String
) As Task(Of IndexerGetStatusResponse)

Parameters

  • indexerName
    Type: System.String

    Required. The name of the indexer for which to retrieve status.

Return Value

Type: System.Threading.Tasks.Task<IndexerGetStatusResponse>

Current status and execution history of an indexer.

See Also

IndexerOperationsExtensions Class
Microsoft.Azure.Search Namespace

Return to top