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!

PassportAuthenticationModule Authenticate Event

[To be supplied.]

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

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

Parameters

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

See Also

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