DineroPortableClientSDK.DineroCredentials.DineroCredentials C# (CSharp) Method

DineroCredentials() protected method

protected DineroCredentials ( string username, string password ) : System
username string
password string
return 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