ConnectionClosedReason Enumeration |
Represents the reason a connection was closed.
Namespace:
MongoDB.Driver.Core.Events
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
Syntax public enum ConnectionClosedReason
Public Enumeration ConnectionClosedReason
type ConnectionClosedReason
Members
| Member name | Value | Description |
---|
| Stale | 0 |
The pool was cleared, making the connection no longer valid.
|
| Idle | 1 |
The connection became stale by being available for too long.
|
| Error | 2 |
The connection experienced an error, making it no longer valid.
|
| PoolClosed | 3 |
The pool was closed, making the connection no longer valid.
|
| Unknown | 4 |
The reason the connection was closed is unknown.
|
See Also