AuthenticationModules Property

HttpServer.dll

Modules used for authentication. The module that is is added first is used as the default auth module.

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

Syntax

C#
public IList<AuthModule> AuthenticationModules { get; }
Visual Basic (Declaration)
Public ReadOnly Property AuthenticationModules As IList(Of AuthModule)
Visual C++
public:
property IList<AuthModule^>^ AuthenticationModules {
	IList<AuthModule^>^ get ();
}

Remarks

Use the corresponding property in the WebSiteModule if you are using multiple websites.

See Also