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!

CustomAuthenticationModule Authenticate Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the Authenticate event.

[Visual Basic]
Private Sub CustomAuthenticationModuleName_Authenticate( _
   ByVal sender As Object, _
   ByVal e As CustomAuthenticationEventArgs _
)
[C#]
private void CustomAuthenticationModuleName_Authenticate(
   object sender,
   CustomAuthenticationEventArgs e
);
[C++]
private: void CustomAuthenticationModuleName_Authenticate(
   Object* sender,
   CustomAuthenticationEventArgs* e
);
[JScript]
private CustomAuthenticationModuleName_Authenticate(
   sender : Object,
   e : CustomAuthenticationEventArgs
);

Parameters

sender
The source of the event.
e
A CustomAuthenticationEventArgs that contains the event data.

See Also

CustomAuthenticationModule Class | CustomAuthenticationModule MembersTopic | System.Web.Security Namespace