Flush
[mono.git] / mcs / class / System / System.Net / TransportType.cs
1 // TransportType.cs\r
2 //\r
3 // This code was automatically generated from\r
4 // ECMA CLI XML Library Specification.\r
5 // Generator: libgen.xsl\r
6 // Source file: all.xml\r
7 // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml\r
8 //\r
9 // (C) 2001 Ximian, Inc.  http://www.ximian.com\r
10 \r
11 \r
12 namespace System.Net {\r
13 \r
14 \r
15         /// <summary>\r
16         /// <para>\r
17         ///                   Defines the transport type allowed for the socket.\r
18         ///                </para>\r
19         /// </summary>\r
20         public enum TransportType {\r
21 \r
22                 /// <summary>\r
23                 /// <para>\r
24                 ///                   Udp connections are allowed.\r
25                 ///                </para>\r
26                 /// </summary>\r
27                 Udp = 1,\r
28 \r
29                 /// <summary>\r
30                 /// <para>\r
31                 ///                   TCP connections are allowed.\r
32                 ///                </para>\r
33                 /// </summary>\r
34                 Tcp = 2,\r
35 \r
36                 /// <summary>\r
37                 /// <para>\r
38                 ///                   Any connection is allowed.\r
39                 ///                </para>\r
40                 /// </summary>\r
41                 All = 3,\r
42         } // TransportType\r
43 \r
44 } // System.Net\r