scripts
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user