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!

IAuthenticationModule.CanRespond

Indicates that the authentication module can respond to the supplied challenge.

[Visual Basic]
Function CanRespond( _
   ByVal Challenge As String _
) As Boolean
[C#]
bool CanRespond(
   string Challenge
);
[C++]
bool CanRespond(
   String* Challenge
) = 0;
[JScript]
function CanRespond(
   Challenge : String
) : Boolean;

Parameters

Challenge
The authentication challenge sent by the server.

Return Value

true if the authentication module can respond to the supplied challenge; otherwise, false if the module cannot respond to the challenge.

Remarks

When an authentication challenge is received by the client, the AuthenticationManager calls the CanRespond method of each registered authentication module. The first module to respond true is then called to respond to the challenge.

See Also

IAuthenticationModule Interface | IAuthenticationModule Members | System.Net Namespace