SlackConnector.Connections.ProxySettings.ProxySettings C# (CSharp) Méthode

ProxySettings() public méthode

public ProxySettings ( string url, string username, string password ) : System
url string
username string
password string
Résultat 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