This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Lifetime
{
/// <summary>Indicates the possible lease states of a lifetime lease.</summary>
// Token: 0x020003D4 RID: 980
[ComVisible(true)]
[Serializable]
public enum LeaseState
{
/// <summary>The lease is not initialized.</summary>
// Token: 0x04000F01 RID: 3841
Null,
/// <summary>The lease has been created, but is not yet active.</summary>
// Token: 0x04000F02 RID: 3842
Initial,
/// <summary>The lease is active and has not expired.</summary>
// Token: 0x04000F03 RID: 3843
Active,
/// <summary>The lease has expired and is seeking sponsorship.</summary>
// Token: 0x04000F04 RID: 3844
Renewing,
/// <summary>The lease has expired and cannot be renewed.</summary>
// Token: 0x04000F05 RID: 3845
Expired
}
}