DocumentsOperationsExtensions Class

Definition

Operations for querying an index and uploading, merging, and deleting documents. https://docs.microsoft.com/rest/api/searchservice/Document-operations

public static class DocumentsOperationsExtensions
type DocumentsOperationsExtensions = class
Public Module DocumentsOperationsExtensions
Inheritance
DocumentsOperationsExtensions

Methods

Autocomplete(IDocumentsOperations, String, String, AutocompleteParameters, SearchRequestOptions)

Queries the number of documents in the search index.

AutocompleteAsync(IDocumentsOperations, String, String, AutocompleteParameters, SearchRequestOptions, CancellationToken)

Queries the number of documents in the search index.

ContinueSearch(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions)

Retrieves the next page of search results from the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

ContinueSearch<T>(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions)

Retrieves the next page of search results from the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

ContinueSearchAsync(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

Retrieves the next page of search results from the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

ContinueSearchAsync<T>(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions, CancellationToken)

Retrieves the next page of search results from the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

Count(IDocumentsOperations, SearchRequestOptions)

Queries the number of documents in the search index.

CountAsync(IDocumentsOperations, SearchRequestOptions, CancellationToken)

Queries the number of documents in the search index.

Get(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

Retrieves a document from the search index. https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

Get<T>(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions)

Retrieves a document from the search index. https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

GetAsync(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions, CancellationToken)

Retrieves a document from the search index. https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

GetAsync<T>(IDocumentsOperations, String, IEnumerable<String>, SearchRequestOptions, CancellationToken)

Retrieves a document from the search index. https://docs.microsoft.com/rest/api/searchservice/Lookup-Document

Index(IDocumentsOperations, IndexBatch<Document>, SearchRequestOptions)

Sends a batch of upload, merge, and/or delete actions to the search index. https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

Index<T>(IDocumentsOperations, IndexBatch<T>, SearchRequestOptions)

Sends a batch of upload, merge, and/or delete actions to the search index. https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

IndexAsync(IDocumentsOperations, IndexBatch<Document>, SearchRequestOptions, CancellationToken)

Sends a batch of upload, merge, and/or delete actions to the search index. https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

IndexAsync<T>(IDocumentsOperations, IndexBatch<T>, SearchRequestOptions, CancellationToken)

Sends a batch of upload, merge, and/or delete actions to the search index. https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents

Search(IDocumentsOperations, String, SearchParameters, SearchRequestOptions)

Searches for documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

Search<T>(IDocumentsOperations, String, SearchParameters, SearchRequestOptions)

Searches for documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

SearchAsync(IDocumentsOperations, String, SearchParameters, SearchRequestOptions, CancellationToken)

Searches for documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

SearchAsync<T>(IDocumentsOperations, String, SearchParameters, SearchRequestOptions, CancellationToken)

Searches for documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Search-Documents

Suggest(IDocumentsOperations, String, String, SuggestParameters, SearchRequestOptions)

Suggests query terms based on input text and matching documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Suggestions

Suggest<T>(IDocumentsOperations, String, String, SuggestParameters, SearchRequestOptions)

Suggests query terms based on input text and matching documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Suggestions

SuggestAsync(IDocumentsOperations, String, String, SuggestParameters, SearchRequestOptions, CancellationToken)

Suggests query terms based on input text and matching documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Suggestions

SuggestAsync<T>(IDocumentsOperations, String, String, SuggestParameters, SearchRequestOptions, CancellationToken)

Suggests query terms based on input text and matching documents in the search index. https://docs.microsoft.com/rest/api/searchservice/Suggestions

Applies to