using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Lifetime
{
/// Indicates the possible lease states of a lifetime lease.
// Token: 0x020004E6 RID: 1254
[Token(Token = "0x20004E6")]
[ComVisible(true)]
[Serializable]
public enum LeaseState
{
/// The lease is not initialized.
// Token: 0x0400183F RID: 6207
[Token(Token = "0x400183F")]
Null,
/// The lease has been created, but is not yet active.
// Token: 0x04001840 RID: 6208
[Token(Token = "0x4001840")]
Initial,
/// The lease is active and has not expired.
// Token: 0x04001841 RID: 6209
[Token(Token = "0x4001841")]
Active,
/// The lease has expired and is seeking sponsorship.
// Token: 0x04001842 RID: 6210
[Token(Token = "0x4001842")]
Renewing,
/// The lease has expired and cannot be renewed.
// Token: 0x04001843 RID: 6211
[Token(Token = "0x4001843")]
Expired
}
}