New test.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / RegistrationConnectionType.cs
1 //
2 // System.Runtime.InteropServices.RegistrationConnectionType
3 //
4 // Author:
5 //   Kazuki Oikawa  (kazuki@panicode.com)
6 //
7
8 #if NET_2_0
9
10 using System;
11
12 namespace System.Runtime.InteropServices
13 {
14         [Flags]
15         public enum RegistrationConnectionType
16         {
17                 MultipleUse = 1,
18                 MultiSeparate = 2,
19                 SingleUse = 0,
20                 Suspended = 4,
21                 Surrogate = 8
22         }
23 }
24 #endif