Arango.Client.Protocol.Connection.Connection C# (CSharp) Метод

Connection() приватный Метод

private Connection ( string alias, string hostname, int port, bool isSecured, string userName, string password, bool useWebProxy = false ) : System
alias string
hostname string
port int
isSecured bool
userName string
password string
useWebProxy bool
Результат System
        internal Connection(string alias, string hostname, int port, bool isSecured, string userName, string password, bool useWebProxy = false)
        {
            Alias = alias;
            Hostname = hostname;
            Port = port;
            IsSecured = isSecured;
            Username = userName;
            Password = password;

            UseWebProxy = useWebProxy;

            BaseUri = new Uri((isSecured ? "https" : "http") + "://" + hostname + ":" + port + "/");
        }

Same methods

Connection::Connection ( string alias, string hostname, int port, bool isSecured, string databaseName, string userName, string password, bool useWebProxy = false ) : System