Click or drag to resize
IFulltextStoreStartSession Method
Starts a new full-text session.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
IFulltextSession StartSession()

Return Value

Type: IFulltextSession
An instance implementing IFulltextSession
Exceptions
Examples
IFulltextStore fulltextStore = new FulltextStore().Initialize();

using (IFulltextSession session = fulltextStore.StartSession())
{
    //Do stuff with session
}
See Also