Click or drag to resize

ServerDescriptionWith Method

Returns a new instance of ServerDescription with some values changed.

Namespace:  MongoDB.Driver.Core.Servers
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public ServerDescription With(
	Optional<string> reasonChanged = default,
	Optional<TimeSpan> averageRoundTripTime = default,
	Optional<EndPoint> canonicalEndPoint = default,
	Optional<bool> helloOk = default,
	Optional<ElectionId> electionId = default,
	Optional<Exception> heartbeatException = default,
	Optional<TimeSpan> heartbeatInterval = default,
	Optional<DateTime?> lastHeartbeatTimestamp = default,
	Optional<DateTime> lastUpdateTimestamp = default,
	Optional<DateTime?> lastWriteTimestamp = default,
	Optional<TimeSpan?> logicalSessionTimeout = default,
	Optional<int> maxBatchCount = default,
	Optional<int> maxDocumentSize = default,
	Optional<int> maxMessageSize = default,
	Optional<int> maxWireDocumentSize = default,
	Optional<ReplicaSetConfig> replicaSetConfig = default,
	Optional<ServerState> state = default,
	Optional<TagSet> tags = default,
	Optional<TopologyVersion> topologyVersion = default,
	Optional<ServerType> type = default,
	Optional<SemanticVersion> version = default,
	Optional<Range<int>> wireVersionRange = default
)

Parameters

reasonChanged (Optional)
Type: MongoDB.DriverOptionalString
The reason the server description changed.
averageRoundTripTime (Optional)
Type: MongoDB.DriverOptionalTimeSpan
The average round trip time.
canonicalEndPoint (Optional)
Type: MongoDB.DriverOptionalEndPoint
The canonical end point.
helloOk (Optional)
Type: MongoDB.DriverOptionalBoolean
Whether the server supports the hello command.
electionId (Optional)
Type: MongoDB.DriverOptionalElectionId
The election identifier.
heartbeatException (Optional)
Type: MongoDB.DriverOptionalException
The heartbeat exception.
heartbeatInterval (Optional)
Type: MongoDB.DriverOptionalTimeSpan
The heartbeat interval.
lastHeartbeatTimestamp (Optional)
Type: MongoDB.DriverOptionalNullableDateTime
The last heartbeat timestamp.
lastUpdateTimestamp (Optional)
Type: MongoDB.DriverOptionalDateTime
The last update timestamp.
lastWriteTimestamp (Optional)
Type: MongoDB.DriverOptionalNullableDateTime
The last write timestamp.
logicalSessionTimeout (Optional)
Type: MongoDB.DriverOptionalNullableTimeSpan
The logical session timeout.
maxBatchCount (Optional)
Type: MongoDB.DriverOptionalInt32
The maximum batch count.
maxDocumentSize (Optional)
Type: MongoDB.DriverOptionalInt32
The maximum size of a document.
maxMessageSize (Optional)
Type: MongoDB.DriverOptionalInt32
The maximum size of a message.
maxWireDocumentSize (Optional)
Type: MongoDB.DriverOptionalInt32
The maximum size of a wire document.
replicaSetConfig (Optional)
Type: MongoDB.DriverOptionalReplicaSetConfig
The replica set configuration.
state (Optional)
Type: MongoDB.DriverOptionalServerState
The server state.
tags (Optional)
Type: MongoDB.DriverOptionalTagSet
The replica set tags.
topologyVersion (Optional)
Type: MongoDB.DriverOptionalTopologyVersion
The topology version.
type (Optional)
Type: MongoDB.DriverOptionalServerType
The server type.
version (Optional)
Type: MongoDB.DriverOptionalSemanticVersion
The server version.
wireVersionRange (Optional)
Type: MongoDB.DriverOptionalRangeInt32
The wire version range.

Return Value

Type: ServerDescription
A new instance of ServerDescription.
See Also