IndexingParameters Constructors

Definition

Overloads

IndexingParameters()

Initializes a new instance of the IndexingParameters class.

IndexingParameters(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IDictionary<String,Object>)

Initializes a new instance of the IndexingParameters class.

IndexingParameters()

Source:
IndexingParameters.cs

Initializes a new instance of the IndexingParameters class.

public IndexingParameters ();
Public Sub New ()

Applies to

IndexingParameters(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IDictionary<String,Object>)

Source:
IndexingParameters.cs

Initializes a new instance of the IndexingParameters class.

public IndexingParameters (int? batchSize = default, int? maxFailedItems = default, int? maxFailedItemsPerBatch = default, System.Collections.Generic.IDictionary<string,object> configuration = default);
new Microsoft.Azure.Search.Models.IndexingParameters : Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.Azure.Search.Models.IndexingParameters
Public Sub New (Optional batchSize As Nullable(Of Integer) = Nothing, Optional maxFailedItems As Nullable(Of Integer) = Nothing, Optional maxFailedItemsPerBatch As Nullable(Of Integer) = Nothing, Optional configuration As IDictionary(Of String, Object) = Nothing)

Parameters

batchSize
Nullable<Int32>
maxFailedItems
Nullable<Int32>
maxFailedItemsPerBatch
Nullable<Int32>
configuration
IDictionary<String,Object>

Applies to