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!

WindowsAuthenticationModule Authenticate Event

[To be supplied.]

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

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

Parameters

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

See Also

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