AuthenticationSchemeSelector Delegate
Selects the authentication scheme for an HttpListener instance.
Assembly: System (in System.dll)
public delegate AuthenticationSchemes AuthenticationSchemeSelector( HttpListenerRequest httpRequest )
Parameters
- httpRequest
- Type: System.Net.HttpListenerRequest
The HttpListenerRequest instance for which to select an authentication scheme.
Return Value
Type: System.Net.AuthenticationSchemesOne of the AuthenticationSchemes values that indicates the method of authentication to use for the specified client request.
Delegates of this type are used by HttpListener instances to select an authentication scheme based on the characteristics of a request.
An AuthenticationSchemeSelector delegate is passed an HttpListenerRequest object for each incoming request that has not provided authentication information. The method invoked by the delegate uses the HttpListenerRequest object and any other available information to decide which authentication scheme to require. The delegate is specified by using the AuthenticationSchemeSelectorDelegate property.
The following example uses an instance of this type to set the AuthenticationSchemeSelectorDelegate property.
// Set up a listener. HttpListener listener = new HttpListener(); HttpListenerPrefixCollection prefixes = listener.Prefixes; prefixes.Add(@"http://localhost:8080/"); prefixes.Add(@"http://contoso.com:8080/"); // Specify the authentication delegate. listener.AuthenticationSchemeSelectorDelegate = new AuthenticationSchemeSelector (AuthenticationSchemeForClient); // Start listening for requests and process them // synchronously. listener.Start();
The following example shows the implementation of the method invoked by the AuthenticationSchemeSelector delegate in the previous example.
static AuthenticationSchemes AuthenticationSchemeForClient(HttpListenerRequest request) { Console.WriteLine("Client authentication protocol selection in progress..."); // Do not authenticate local machine requests. if (request.RemoteEndPoint.Address.Equals (IPAddress.Loopback)) { return AuthenticationSchemes.None; } else { return AuthenticationSchemes.IntegratedWindowsAuthentication; } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.