ActiveDirectoryMembershipUser.LastActivityDate Property

Definition

Throws a NotSupportedException exception in all cases.

C#
public override DateTime LastActivityDate { get; set; }

Property Value

Always throws a NotSupportedException exception.

Exceptions

any attempt to get or set the LastActivityDate property.

Examples

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 LastActivityDate property. For the full code required to run the example, see the Example section of the ActiveDirectoryMembershipUser class overview topic.

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

Remarks

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

Applies to

Tuote Versiot
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1