SlackConnector.Connections.ProxySettings.ProxySettings C# (CSharp) Method

ProxySettings() public method

public ProxySettings ( string url, string username, string password ) : System
url string
username string
password string
return System
        public ProxySettings(string url, string username, string password)
        {
            if (string.IsNullOrEmpty(url))
            {
                throw new ArgumentNullException(nameof(url));
            }

            if (string.IsNullOrEmpty(username))
            {
                throw new ArgumentNullException(nameof(username));
            }

            if (string.IsNullOrEmpty(password))
            {
                throw new ArgumentNullException(nameof(password));
            }

            Url = url;
            Username = username;
            Password = password;
        }
ProxySettings