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