using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Lifetime
{
/// Indicates the possible lease states of a lifetime lease.
// Token: 0x020003D4 RID: 980
[ComVisible(true)]
[Serializable]
public enum LeaseState
{
/// The lease is not initialized.
// Token: 0x04000F01 RID: 3841
Null,
/// The lease has been created, but is not yet active.
// Token: 0x04000F02 RID: 3842
Initial,
/// The lease is active and has not expired.
// Token: 0x04000F03 RID: 3843
Active,
/// The lease has expired and is seeking sponsorship.
// Token: 0x04000F04 RID: 3844
Renewing,
/// The lease has expired and cannot be renewed.
// Token: 0x04000F05 RID: 3845
Expired
}
}