Gets the date on which this user's ability to login expires.

Namespace: Asi.iBO.ContactManagement
Assembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0

Syntax

C#
public DateTime ExpiresOn { get; set; }
Visual Basic
Public Property ExpiresOn As DateTime
	Get
	Set
Visual C++
public:
property DateTime ExpiresOn {
	DateTime get ();
	void set (DateTime value);
}

Field Value

A DateTime value containing the date that the user's login will expire or has expired. If no Expiration date is set in iMIS, this will contain MaxValue.

Remarks

The user is able to login using this account up to 23:59:59 of the date represented here. After that time, login is denied.

When creating a new CContact, this value will default to Today + 7 days. To make it so that the login never expires, set to DateTime.MaxValue.

See Also