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!

CookieAuthenticationModule Authenticate Event

[To be supplied.]

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

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

Parameters

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

See Also

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