System.Net.HttpListenerBasicIdentity.HttpListenerBasicIdentity C# (CSharp) Method

HttpListenerBasicIdentity() public method

public HttpListenerBasicIdentity ( string username, string password ) : System.Security.Principal
username string
password string
return System.Security.Principal
        public HttpListenerBasicIdentity(string username, string password) :
            base(username, "Basic")
        {
            Password = password;
        }
HttpListenerBasicIdentity