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