Name

AuthenticationManager

Synopsis

This class is responsible for finding an authentication module to authorize access to network resources. You do not need to use this class unless you have defined your own authentication scheme. By default, Basic, Digest, NTLM, and Kerberos authentication schemes are supported. This, for the most part, covers the needs of 99.9% of all .NET programmers in the world. Kerberos is not supported on Windows 95/98 or on Windows ME.

Public Class AuthenticationManager
                  ' Public Shared Properties
   Public Shared ReadOnly Property RegisteredModules As IEnumerator  
' Public Shared Methods
   Public Shared Function Authenticate(
        ByVal challenge As String, 
        ByVal request As WebRequest, 
        ByVal credentials As ICredentials) As Authorization  
   Public Shared Function PreAuthenticate(
        ByVal request As WebRequest, 
        ByVal credentials As ICredentials) As Authorization  
   Public Shared Sub Register(
        ByVal authenticationModule As IAuthenticationModule) 
   Public Shared Sub Unregister(
        ByVal authenticationModule As IAuthenticationModule) 
   Public Shared Sub Unregister(
        ByVal authenticationScheme As String) 
End Class

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.