23 lines
1016 B
C#
23 lines
1016 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Indicates whether an <see cref="T:System.Threading.EventWaitHandle" /> is reset automatically or manually after receiving a signal.</summary>
|
|
// Token: 0x02000333 RID: 819
|
|
[Token(Token = "0x2000333")]
|
|
[ComVisible(false)]
|
|
public enum EventResetMode
|
|
{
|
|
/// <summary>When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> resets automatically after releasing a single thread. If no threads are waiting, the <see cref="T:System.Threading.EventWaitHandle" /> remains signaled until a thread blocks, and resets after releasing the thread.</summary>
|
|
// Token: 0x04001166 RID: 4454
|
|
[Token(Token = "0x4001166")]
|
|
AutoReset,
|
|
/// <summary>When signaled, the <see cref="T:System.Threading.EventWaitHandle" /> releases all waiting threads and remains signaled until it is manually reset.</summary>
|
|
// Token: 0x04001167 RID: 4455
|
|
[Token(Token = "0x4001167")]
|
|
ManualReset
|
|
}
|
|
}
|