BasicAuthentication Class

HttpServer.dll

The "basic" authentication scheme is based on the model that the client must authenticate itself with a user-ID and a password for each realm. The realm value should be considered an opaque string which can only be compared for equality with other realms on that server. The server will service the request only if it can validate the user-ID and password for the protection space of the Request-URI. There are no optional authentication parameters.

Namespace:  HttpServer.Authentication
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public class BasicAuthentication : AuthModule
Visual Basic (Declaration)
Public Class BasicAuthentication _
	Inherits AuthModule
Visual C++
public ref class BasicAuthentication : public AuthModule

Inheritance Hierarchy

System..::.Object
  HttpServer.Authentication..::.AuthModule
    HttpServer.Authentication..::.BasicAuthentication

See Also