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