ADBaseLibrary.Proxy.Proxy C# (CSharp) Method

Proxy() public method

public Proxy ( string address, int port, string username, string password ) : System
address string
port int
username string
password string
return System
        public Proxy(string address, int port, string username, string password)
        {
            ProxyUsername = username;
            ProxyPassword = password;
            ProxyAddress = address;
            ProxyPort = port;
        }