DineroPortableClientSDK.DineroCredentials.DineroCredentials C# (CSharp) Méthode

DineroCredentials() protected méthode

protected DineroCredentials ( string username, string password ) : System
username string
password string
Résultat System
        protected DineroCredentials(string username, string password)
        {
            if (username == null) throw new ArgumentNullException("username");
            if (password == null) throw new ArgumentNullException("password");

            Username = username;
            Password = password;
        }
DineroCredentials