DineroPortableClientSDK.DineroCredentials.DineroCredentials C# (CSharp) Метод

DineroCredentials() защищенный Метод

protected DineroCredentials ( string username, string password ) : System
username string
password string
Результат 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