CSMongo.Exceptions.ConnectionNotOpenedException.ConnectionNotOpenedException C# (CSharp) Метод

ConnectionNotOpenedException() публичный Метод

Throws an exception that the connection isn't ready yet
public ConnectionNotOpenedException ( string host ) : System
host string
Результат System
        public ConnectionNotOpenedException(string host)
            : base(string.Format("Connection to {0} has not been opened yet. Either use 'autoconnect' or Open() before sending requests.", host))
        {
        }
ConnectionNotOpenedException