NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AuthenticationManager.Respond

Call each registered authentication module to determine the first module that can respond to the authentication request.

[Visual Basic]
Public Shared Function Respond( _
   ByVal ResponseHeaders As NameValueCollection, _
   ByVal Request As WebRequest, _
   ByVal Credentials As ICredentialLookup _
) As Authorization
[C#]
public static Authorization Respond(
   NameValueCollection ResponseHeaders,
   WebRequest Request,
   ICredentialLookup Credentials
);
[C++]
public: static Authorization* Respond(
   NameValueCollection* ResponseHeaders,
   WebRequest* Request,
   ICredentialLookup* Credentials
);
[JScript]
public static function Respond(
   ResponseHeaders : NameValueCollection,
   Request : WebRequest,
   Credentials : ICredentialLookup
) : Authorization;

Parameters

ResponseHeaders
The header collection returned by the server in response to a request.
Request
[To be supplied.]
Credentials
[To be supplied.]

Return Value

An instance of the Authorization class containing the result of the authorization attempt.

See Also

AuthenticationManager Class | AuthenticationManager Members | System.Net Namespace