Class VectorSearchAlgorithmConfiguration
Contains configuration options specific to the algorithm used during indexing time. Please note VectorSearchAlgorithmConfiguration is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include HnswVectorSearchAlgorithmConfiguration.
Inheritance
System.Object
VectorSearchAlgorithmConfiguration
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Search.Documents.dll
Syntax
public abstract class VectorSearchAlgorithmConfiguration
Constructors
VectorSearchAlgorithmConfiguration(String)
Initializes a new instance of VectorSearchAlgorithmConfiguration.
Declaration
protected VectorSearchAlgorithmConfiguration (string name);
Parameters
System.String
name
The name to associate with this particular configuration. |
Exceptions
System.ArgumentNullException
|
Properties
Name
The name to associate with this particular configuration.
Declaration
public string Name { get; set; }
Property Value
System.String
|