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;
true if the authentication module can respond to the supplied challenge; otherwise, false if the module cannot respond to the challenge.
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.
IAuthenticationModule Interface | IAuthenticationModule Members | System.Net Namespace