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

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

Return Value

Type: IFulltextSession
An instance implementing IFulltextSession

Implements

IFulltextStoreStartSession
Exceptions
Examples
IFulltextStore fulltextStore = new FulltextStore().Initialize();

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