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: 0x020004E6 RID: 1254
|
|
[Token(Token = "0x20004E6")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum LeaseState
|
|
{
|
|
/// <summary>The lease is not initialized.</summary>
|
|
// Token: 0x0400183F RID: 6207
|
|
[Token(Token = "0x400183F")]
|
|
Null,
|
|
/// <summary>The lease has been created, but is not yet active.</summary>
|
|
// Token: 0x04001840 RID: 6208
|
|
[Token(Token = "0x4001840")]
|
|
Initial,
|
|
/// <summary>The lease is active and has not expired.</summary>
|
|
// Token: 0x04001841 RID: 6209
|
|
[Token(Token = "0x4001841")]
|
|
Active,
|
|
/// <summary>The lease has expired and is seeking sponsorship.</summary>
|
|
// Token: 0x04001842 RID: 6210
|
|
[Token(Token = "0x4001842")]
|
|
Renewing,
|
|
/// <summary>The lease has expired and cannot be renewed.</summary>
|
|
// Token: 0x04001843 RID: 6211
|
|
[Token(Token = "0x4001843")]
|
|
Expired
|
|
}
|
|
}
|