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.
The following example shows the implementation of the method invoked by the AuthenticationSchemeSelector delegate in the previous example.
Available since 2.0