20 lines
943 B
C#
20 lines
943 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Threading
|
|
{
|
|
/// <summary>Indicates whether an <see cref="T:System.Threading.EventWaitHandle" /> is reset automatically or manually after receiving a signal.</summary>
|
|
/// <filterpriority>2</filterpriority>
|
|
// Token: 0x0200060C RID: 1548
|
|
[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: 0x040016E6 RID: 5862
|
|
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: 0x040016E7 RID: 5863
|
|
ManualReset
|
|
}
|
|
}
|