* Makefile: Added new targets for running the tests. Now the generated
[mono.git] / mcs / class / System / System.Net.Sockets / SocketFlags.cs
index ad50889ee65331f02b9b49aba8968beca98c10a9..12b0906b1ee82a3fa7f5de8334b9f2ed45a6a892 100644 (file)
@@ -1,73 +1,46 @@
-// SocketFlags.cs\r
-//\r
-// This code was automatically generated from\r
-// ECMA CLI XML Library Specification.\r
-// Generator: libgen.xsl\r
-// Source file: AllTypes.xml\r
-// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml\r
-//\r
-// (C) 2001 Ximian, Inc.  http://www.ximian.com\r
-\r
-\r
-namespace System.Net.Sockets {\r
-\r
-\r
-       /// <summary>\r
-       /// <para> Controls the transfer behavior when sending and \r
-       ///  receiving data on a <see cref="T:System.Net.Sockets.Socket" /> instance.</para>\r
-       /// </summary>\r
-       /// <remarks>\r
-       /// <para>The following methods use this enumeration:</para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.BeginReceive(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.AsyncCallback,System.Object)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.BeginReceiveFrom(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint@,System.AsyncCallback,System.Object)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.BeginSend(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.AsyncCallback,System.Object)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.BeginSendTo(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint,System.AsyncCallback,System.Object)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.Receive(System.Byte[],System.Int32,System.Net.Sockets.SocketFlags)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.ReceiveFrom(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint@)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.Send(System.Byte[],System.Int32,System.Net.Sockets.SocketFlags)" />\r
-       /// </para>\r
-       /// <para>\r
-       /// <see cref="M:System.Net.Sockets.Socket.SendTo(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint)" />\r
-       /// </para>\r
-       /// </remarks>\r
-       [Flags]\r
-       public enum SocketFlags {\r
-\r
-               /// <summary><para> No flags are specified. \r
-               ///  </para></summary>\r
-               None = 0x00000000,\r
-\r
-               /// <summary><para> Specifies to send or receive out-of-band (OOB) data. OOB\r
-               ///       data is specially marked data that can be received independently of unmarked data.\r
-               ///       </para><block subset="none" type="note"><para>Used only with a connection-oriented protocol. </para></block></summary>\r
-               OutOfBand = 0x00000001,\r
-\r
-               /// <summary><para> Specifies to peek at the incoming data. This copies data \r
-               ///  to the input buffer but does not remove it from the input queue.\r
-               ///  </para></summary>\r
-               Peek = 0x00000002,\r
-\r
-               /// <summary><para> Specifies not to use routing tables to transmit the data. If there is a router \r
-               ///  between the local and destination addresses, the data will be lost.\r
-               ///  </para></summary>\r
-               DontRoute = 0x00000004,\r
-\r
-               /// <summary><para> Specifies that a partial message has been received.\r
-               ///       </para><block subset="none" type="note"><para>Used only with a message-oriented protocol. </para></block></summary>\r
-               Partial = 0x00008000,\r
-       } // SocketFlags\r
-\r
-} // System.Net.Sockets\r
+// SocketFlags.cs
+//
+// This code was automatically generated from
+// ECMA CLI XML Library Specification.
+// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
+// Created: Wed, 5 Sep 2001 06:32:49 UTC
+// Source file: AllTypes.xml
+// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
+//
+// (C) 2001 Ximian, Inc.  http://www.ximian.com
+
+
+namespace System.Net.Sockets {
+
+
+       /// <summary>
+       /// </summary>
+       [Flags]
+       public enum SocketFlags {
+
+               /// <summary>
+               /// </summary>
+               None = 0x00000000,
+
+               /// <summary>
+               /// </summary>
+               OutOfBand = 0x00000001,
+
+               /// <summary>
+               /// </summary>
+               MaxIOVectorLength = 0x00000010,
+               
+               /// <summary>
+               /// </summary>
+               Peek = 0x00000002,
+
+               /// <summary>
+               /// </summary>
+               DontRoute = 0x00000004,
+
+               /// <summary>
+               /// </summary>
+               Partial = 0x00008000,
+       } // SocketFlags
+
+} // System.Net.Sockets