ActiveDirectoryMembershipUser.LastActivityDate Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Throws a NotSupportedException exception in all cases.
public:
virtual property DateTime LastActivityDate { DateTime get(); void set(DateTime value); };
public override DateTime LastActivityDate { get; set; }
member this.LastActivityDate : DateTime with get, set
Public Overrides Property LastActivityDate As DateTime
Always throws a NotSupportedException exception.
any attempt to get or set the LastActivityDate property.
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.
if (user is ActiveDirectoryMembershipUser)
{
lastLoginDate.Text = "Not available";
lastActivityDate.Text = "Not available";
}
else
{
lastLoginDate.Text = user.LastLoginDate.ToShortDateString();
lastActivityDate.Text = user.LastActivityDate.ToShortDateString();
}
If TypeOf (user) Is ActiveDirectoryMembershipUser Then
lastLoginDate.Text = "Not available"
lastActivityDate.Text = "Not available"
Else
lastLoginDate.Text = user.LastLoginDate.ToString()
lastActivityDate.Text = user.LastActivityDate.ToString()
End If
The LastActivityDate property is not supported by the ActiveDirectoryMembershipUser class. Attempting to get or set the value will always throw a NotSupportedException.
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 |
Tuotteen .NET palaute
.NET on avoin lähdekoodi projekti. Anna palautetta valitsemalla linkki: