Gets or sets the version of Sphinx which this instance will connect to. Default is 0.9.9.

Namespace: Gronewold.SphinxConnector
Assembly: Gronewold.SphinxConnector (in Gronewold.SphinxConnector.dll) Version: 2.8.0.26312 (2.8.0.26312)

Syntax

C#
public Version Version { get; set; }
Visual Basic
Public Property Version As Version
	Get
	Set

Field Value

The version of Sphinx you want to connect to.

Examples

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 0.9.8.
CopyC#
SphinxClient sphinxClient = new SphinxClient();
sphinxClient.Version = new Version(0,9,8);

Exceptions

See Also