1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 namespace System.Threading
6 {
7     public enum ApartmentState
8     {
9         /*=========================================================================
10         ** Constants for thread apartment states.
11         =========================================================================*/
12         STA = 0,
13         MTA = 1,
14         Unknown = 2
15     }
16 }
17