Files
2026-06-04 11:42:34 +02:00

24 lines
805 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Threading
{
/// <summary>Specifies the apartment state of a <see cref="T:System.Threading.Thread" />.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x02000607 RID: 1543
[ComVisible(true)]
[Serializable]
public enum ApartmentState
{
/// <summary>The <see cref="T:System.Threading.Thread" /> will create and enter a single-threaded apartment.</summary>
// Token: 0x040016DB RID: 5851
STA,
/// <summary>The <see cref="T:System.Threading.Thread" /> will create and enter a multithreaded apartment.</summary>
// Token: 0x040016DC RID: 5852
MTA,
/// <summary>The <see cref="P:System.Threading.Thread.ApartmentState" /> property has not been set.</summary>
// Token: 0x040016DD RID: 5853
Unknown
}
}