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!

DefaultAuthenticationModule Authenticate Event

[To be supplied.]

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

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

Parameters

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

See Also

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