DocumentOperationsExtensions.ContinueSearch Method

 

Applies To: Microsoft Azure

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

Overload List

Name Description
System_CAPS_pubmethodSystem_CAPS_static ContinueSearch(IDocumentOperations, SearchContinuationToken)

Retrieves the next page of search results from the Azure Search index. https://msdn.microsoft.com/library/azure/dn798927.aspx

System_CAPS_pubmethodSystem_CAPS_static ContinueSearch<T>(IDocumentOperations, SearchContinuationToken)

Retrieves the next page of search results from the Azure Search index. https://msdn.microsoft.com/library/azure/dn798927.aspx

See Also

DocumentOperationsExtensions Class
Microsoft.Azure.Search Namespace

Return to top

DocumentOperationsExtensions.ContinueSearch Method (IDocumentOperations, SearchContinuationToken)

Retrieves the next page of search results from the Azure Search index. https://msdn.microsoft.com/library/azure/dn798927.aspx

Syntax

public static DocumentSearchResponse ContinueSearch(
    this IDocumentOperations operations,
    SearchContinuationToken continuationToken
)
public:
[ExtensionAttribute]
static DocumentSearchResponse^ ContinueSearch(
    IDocumentOperations^ operations,
    SearchContinuationToken^ continuationToken
)
static member ContinueSearch : 
        operations:IDocumentOperations *
        continuationToken:SearchContinuationToken -> DocumentSearchResponse
<ExtensionAttribute>
Public Shared Function ContinueSearch (
    operations As IDocumentOperations,
    continuationToken As SearchContinuationToken
) As DocumentSearchResponse

Parameters

Return Value

Type: Microsoft.Azure.Search.Models.DocumentSearchResponse

Response containing the documents matching the query.

Remarks

The non-generic overloads of the ContinueSearch and ContinueSearchAsync methods make a best-effort attempt to map JSON types in the response payload to .NET types. See GetAsync for more information.

Return to top

DocumentOperationsExtensions.ContinueSearch<T> Method (IDocumentOperations, SearchContinuationToken)

Retrieves the next page of search results from the Azure Search index. https://msdn.microsoft.com/library/azure/dn798927.aspx

Syntax

public static DocumentSearchResponse<T> ContinueSearch<T>(
    this IDocumentOperations operations,
    SearchContinuationToken continuationToken
)
where T : class
public:
generic<typename T>
where T : ref class
[ExtensionAttribute]
static DocumentSearchResponse<T>^ ContinueSearch(
    IDocumentOperations^ operations,
    SearchContinuationToken^ continuationToken
)
static member ContinueSearch<'T when 'T : not struct> : 
        operations:IDocumentOperations *
        continuationToken:SearchContinuationToken -> DocumentSearchResponse<'T>
<ExtensionAttribute>
Public Shared Function ContinueSearch(Of T As Class) (
    operations As IDocumentOperations,
    continuationToken As SearchContinuationToken
) As DocumentSearchResponse(Of T)

Parameters

Return Value

Type: Microsoft.Azure.Search.Models.DocumentSearchResponse<T>

Response containing the documents matching the query.

Type Parameters

  • T
    The CLR type that maps to the index schema. Instances of this type can be retrieved as documents from the index.

Remarks

The generic overloads of the ContinueSearch and ContinueSearchAsync methods support mapping of Azure Search field types to .NET types via the type parameter T. See GetAsync<T> for more details on the type mapping.

Return to top