This topic has not yet been rated - Rate this topic

ActiveDirectoryMembershipUser.LastLoginDate Property

Note: This property is new in the .NET Framework version 2.0.

Throws a NotSupportedException exception in all cases.

Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)

public override DateTime LastLoginDate { get; set; }
/** @property */
public DateTime get_LastLoginDate ()

/** @property */
public void set_LastLoginDate (DateTime value)

public override function get LastLoginDate () : DateTime

public override function set LastLoginDate (value : DateTime)

Property Value

Always throws a NotSupportedException exception.
Exception type Condition

NotSupportedException

any attempt to get or set the LastLoginDate property.

The LastLoginDate property is not supported by the ActiveDirectoryMembershipUser class. Attempting to get or set the value will always throw a NotSupportedException.

The following code example demonstrates how to determine whether the underlying type of a membership user is ActiveDirectoryMembershipUser, and to avoid throwing a NotSupportedException for accessing the LastLoginDate property. For the full code required to run the example, see the Example section of the ActiveDirectoryMembershipUser class overview topic.

if (user is ActiveDirectoryMembershipUser)
{
  lastLoginDate.Text = "Not available";
  lastActivityDate.Text = "Not available";
}
else
{
  lastLoginDate.Text = user.LastLoginDate.ToShortDateString();
  lastActivityDate.Text = user.LastActivityDate.ToShortDateString();
}

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

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

.NET Framework

Supported in: 2.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ