 | SphinxClientVersion Property |
Gets or sets the version of Sphinx which this instance will
connect to. Default is 2.2.1.
Namespace:
SphinxConnector.NativeApi
Assembly:
SphinxConnector (in SphinxConnector.dll) Version: 5.4.1
Syntaxpublic Version Version { get; set; }
Public Property Version As Version
Get
Set
Property Value
Type:
VersionThe version of Sphinx you want to connect to.
Exceptions
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.2.1.
SphinxClient sphinxClient = new SphinxClient();
sphinxClient.Version = SphinxVersion.V221.
See Also