Click or drag to resize
SphinxClientVersion Property
Gets or sets the version of Sphinx which this instance will connect to. Default is 2.0.5.

Namespace: SphinxConnector.NativeApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
public Version Version { get; set; }

Property Value

Type: Version
The version of Sphinx you want to connect to.
Exceptions
ExceptionCondition
ArgumentNullException
ArgumentOutOfRangeExceptionvalue is less than 2.0.1.
Examples
FIXME: To change the version, create an instance of the Version class with the appropriate version number and assign it to the version property. The following example shows how to change the version to 2.0.1.
SphinxClient sphinxClient = new SphinxClient();
sphinxClient.Version = SphinxVersion.V201.
See Also