* UnsafeNativeMethods.cs: added IEnumVariant interface,
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / SecurityIDType.cs
1 //
2 // System.Windows.Forms.SecurityIDType.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// </summary>
15         public enum SecurityIDType {
16                 Alias = 4,
17                 Computer = 9,
18                 DeletedAccount = 6,
19                 Domain = 3,
20                 Group = 2,
21                 Invalid = 7,
22                 Unknown = 8,
23                 User = 1,
24                 WellKnownGroup = 5
25         }
26 }