HttpServer.Server.RequestAuthentication C# (CSharp) 메소드

RequestAuthentication() 보호된 메소드

Requests authentication from the user.
Used when calculating hashes in Digest authentication.
protected RequestAuthentication ( string realm ) : void
realm string Host/domain name that the server hosts.
리턴 void
        protected virtual void RequestAuthentication(string realm)
        {
            AuthenticationProvider.CreateChallenge(HttpContext.Current.Response, realm);
        }