PassportAuthenticationEventHandler Delegate (System.Web.Security)

Switch View :
ScriptFree
.NET Framework Class Library
PassportAuthenticationEventHandler Delegate

Note: This API is now obsolete.

Represents the method that handles the PassportAuthentication_OnAuthenticate event of a PassportAuthenticationModule. This class is deprecated.

Namespace:  System.Web.Security
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
<ObsoleteAttribute("This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")> _
Public Delegate Sub PassportAuthenticationEventHandler ( _
	sender As Object, _
	e As PassportAuthenticationEventArgs _
)
C#
[ObsoleteAttribute("This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")]
public delegate void PassportAuthenticationEventHandler(
	Object sender,
	PassportAuthenticationEventArgs e
)
Visual C++
[ObsoleteAttribute(L"This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")]
public delegate void PassportAuthenticationEventHandler(
	Object^ sender, 
	PassportAuthenticationEventArgs^ e
)
F#
[<ObsoleteAttribute("This type is obsolete. The Passport authentication product is no longer supported and has been superseded by Live ID.")>]
type PassportAuthenticationEventHandler = 
    delegate of 
        sender:Object * 
        e:PassportAuthenticationEventArgs -> unit

Parameters

sender
Type: System.Object
The object that raised the event.
e
Type: System.Web.Security.PassportAuthenticationEventArgs
A PassportAuthenticationEventArgs object that contains the event data.
Remarks

This class has been deprecated and is no longer supported. Microsoft Passport Network has been replaced by Windows Live ID. For more information about how to use Windows Live ID to authenticate users in a Web application, see Windows Live ID SDK.

Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Obsolete (compiler warning) in 4
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference