Microsoft.Alm.Authentication.Credential.Credential C# (CSharp) Method

Credential() public method

Creates a credential object with a username and password pair.
public Credential ( string username, SecureString password ) : System
username string The username value of the .
password System.Security.SecureString The password value of the .
return System
        public Credential(string username, SecureString password)
        {
            this.Username = username;
            this.Password = password;
        }