System.Net.HttpListenerBasicIdentity.HttpListenerBasicIdentity C# (CSharp) 메소드

HttpListenerBasicIdentity() 공개 메소드

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