Click or drag to resize

SessionConfig Class

The interface that defines options applicable to session constructions. It could be populated by the provided builder-style methods. The default SessionConfig defines a Write session with the server default database using default fetch size specified in FetchSize.
Inheritance Hierarchy
SystemObject
  Neo4j.DriverSessionConfig

Namespace:  Neo4j.Driver
Assembly:  Neo4j.Driver (in Neo4j.Driver.dll) Version: 5.0
Syntax
public sealed class SessionConfig

The SessionConfig type exposes the following members.

Properties
  NameDescription
Public propertyAuthToken
The auth token that will be used for this session. This overrides any auth settings on the driver object.
Public propertyBookmarks
The initial bookmarks to be used by the constructed session. The first transaction (either auto-commit or explicit) will ensure that the executing server is at least up to date to the point identified by the latest of the provided initial bookmarks. The bookmarks can be obtained from LastBookmarks (and corresponding properties in other types of sessions, i.e. IRxSession or ISession.
Public propertyDatabase
Gets the target database name for queries executed within the constructed session.
Public propertyDefaultAccessMode
The type of access required by the constructed session. This is used to route the requests originating from this session instance to the correct server in a clustered environment.
Remarks
The default access mode set is overriden when transaction functions (i.e. ExecuteReadAsyncTResult(FuncIAsyncQueryRunner, TaskTResult, ActionTransactionConfigBuilder) and ExecuteWriteAsyncTResult(FuncIAsyncQueryRunner, TaskTResult, ActionTransactionConfigBuilder) is used (with corresponding access modes derived from invoked method name).
Public propertyFetchSize
The default fetch size. Since Bolt v4 (Neo4j 4.0+), the query running result (records) are pulled from server in batches. This fetch size defines how many records to pull in each batch. Use Infinite to disable batching and always pull all records in one batch instead.
Public propertyImpersonatedUser
Allows the specification of a username that the user wants to impersonate for the duration of the session. Once set this cannot be changed for the duration of the session's lifetime.
Public propertyNotificationsConfig
The configuration for setting which notifications the server should send to the client for queries executed in the session.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
See Also