AuthenticablePrincipal.AccountExpirationDate Property

Definition

Gets or sets a Nullable DateTime that specifies the date and time that the account expires.

public:
 property Nullable<DateTime> AccountExpirationDate { Nullable<DateTime> get(); void set(Nullable<DateTime> value); };
public DateTime? AccountExpirationDate { get; set; }
member this.AccountExpirationDate : Nullable<DateTime> with get, set
Public Property AccountExpirationDate As Nullable(Of DateTime)

Property Value

A DateTime that specifies the date and time that the account expires, or null if the account never expires.

Exceptions

The underlying store does not support this property.

Remarks

As with all DateTime properties in System.DirectoryServices.AccountManagement, the time returned is in UTC form. To convert it to local time, call the ToLocalTime method on the return object.

When you set the AccountExpirationDate, the time will default to UTC. If you want to write in local time, then specify the Kind property of your DateTime object as Local.

Applies to