Gets or sets the version of Sphinx which this instance will
connect to. Default is 0.9.9.
Namespace: Gronewold.SphinxConnectorAssembly: Gronewold.SphinxConnector (in Gronewold.SphinxConnector.dll) Version: 2.8.0.26312 (2.8.0.26312)
Syntax
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
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | |
| System..::..ArgumentOutOfRangeException | value is less than 0.9.8. |