Merge pull request #1109 from adbre/iss358
[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 using System;
9
10 namespace System.Runtime.InteropServices
11 {
12         [Flags]
13         public enum RegistrationConnectionType
14         {
15                 MultipleUse = 1,
16                 MultiSeparate = 2,
17                 SingleUse = 0,
18                 Suspended = 4,
19                 Surrogate = 8
20         }
21 }