using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Lifetime
{
/// Indicates the possible lease states of a lifetime lease.
// Token: 0x020004CA RID: 1226
[Token(Token = "0x20004CA")]
[ComVisible(true)]
[Serializable]
public enum LeaseState
{
/// The lease is not initialized.
// Token: 0x0400177C RID: 6012
[Token(Token = "0x400177C")]
Null,
/// The lease has been created, but is not yet active.
// Token: 0x0400177D RID: 6013
[Token(Token = "0x400177D")]
Initial,
/// The lease is active and has not expired.
// Token: 0x0400177E RID: 6014
[Token(Token = "0x400177E")]
Active,
/// The lease has expired and is seeking sponsorship.
// Token: 0x0400177F RID: 6015
[Token(Token = "0x400177F")]
Renewing,
/// The lease has expired and cannot be renewed.
// Token: 0x04001780 RID: 6016
[Token(Token = "0x4001780")]
Expired
}
}