ClusterConnectionMode Enumeration | 
 Note: This API is now obsolete.
            Represents the cluster connection mode.
            
 
    Namespace: 
   MongoDB.Driver.Core.Clusters
    Assembly:
   MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax[ObsoleteAttribute("Use DirectConnection instead.")]
public enum ClusterConnectionMode<ObsoleteAttribute("Use DirectConnection instead.")>
Public Enumeration ClusterConnectionMode[<ObsoleteAttribute("Use DirectConnection instead.")>]
type ClusterConnectionMode
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Automatic | 0 | 
            Determine the cluster type automatically.
             | 
 | Direct | 1 | 
            Connect directly to a single server of any type.
             | 
 | Standalone | 2 | 
            Connect directly to a Standalone server.
             | 
 | ReplicaSet | 3 | 
            Connect to a replica set.
             | 
 | Sharded | 4 | 
            Connect to one or more shard routers.
             | 
See Also