Chat Support
Loupe - Log - Monitor - Resolve
Gibraltar.Server.Client Namespace / IWebAuthenticationProvider Interface / PreProcessRequest Method
The channel object
The web client that is about to be used to execute the request. It can't be used by the authentication provider to make requests.
The request that is about to be sent
The resource URL (with query string) specified by the client.
Indicates if the request being processed supports authentication or not.

PreProcessRequest Method (IWebAuthenticationProvider)
Perform per-request authentication processing.
Syntax
'Declaration
 
Sub PreProcessRequest( _
   ByVal channel As WebChannel, _
   ByVal client As HttpClient, _
   ByVal request As HttpRequestMessage, _
   ByVal resourceUrl As String, _
   ByVal requestSupportsAuthentication As Boolean _
) 
 

Parameters

channel
The channel object
client
The web client that is about to be used to execute the request. It can't be used by the authentication provider to make requests.
request
The request that is about to be sent
resourceUrl
The resource URL (with query string) specified by the client.
requestSupportsAuthentication
Indicates if the request being processed supports authentication or not.
Remarks
If the request doesn't support authentication, it's a best practice to not provide any authentication information.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also