Table of Contents

Interface IServerSession

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

The interface for a server session.

public interface IServerSession : IDisposable
Inherited Members

Properties

Id

Gets the session Id.

BsonDocument Id { get; }

Property Value

BsonDocument

The session Id.

LastUsedAt

Gets the time this server session was last used (in UTC).

DateTime? LastUsedAt { get; }

Property Value

DateTime?

The time this server session was last used (in UTC).

Methods

AdvanceTransactionNumber()

Gets the next transaction number.

[Obsolete("Let the driver handle when to advance the transaction number.")]
long AdvanceTransactionNumber()

Returns

long

The transaction number.

WasUsed()

Called by the driver when the session is used (i.e. sent to the server).

[Obsolete("Let the driver handle tracking when the session was last used.")]
void WasUsed()