Condividi tramite


DocumentIndexResult Constructors

Definition

Overloads

DocumentIndexResult()

Initializes a new instance of the DocumentIndexResult class.

DocumentIndexResult(IList<IndexingResult>)

Initializes a new instance of the DocumentIndexResult class.

DocumentIndexResult()

Source:
DocumentIndexResult.cs

Initializes a new instance of the DocumentIndexResult class.

public DocumentIndexResult ();
Public Sub New ()

Applies to

DocumentIndexResult(IList<IndexingResult>)

Source:
DocumentIndexResult.cs

Initializes a new instance of the DocumentIndexResult class.

public DocumentIndexResult (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexingResult> results = default);
new Microsoft.Azure.Search.Models.DocumentIndexResult : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexingResult> -> Microsoft.Azure.Search.Models.DocumentIndexResult
Public Sub New (Optional results As IList(Of IndexingResult) = Nothing)

Parameters

results
IList<IndexingResult>

The list of status information for each document in the indexing request.

Applies to