SocketOptionLevel.cs 769 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // SocketOptionLevel.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:32:55 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Net.Sockets {
  12. /// <summary>
  13. /// </summary>
  14. public enum SocketOptionLevel {
  15. /// <summary>
  16. /// </summary>
  17. Socket = 65535,
  18. /// <summary>
  19. /// </summary>
  20. IP = 0,
  21. #if NET_1_1
  22. /// <summary>
  23. /// </summary>
  24. IPv6 = 41,
  25. #endif
  26. /// <summary>
  27. /// </summary>
  28. Tcp = 6,
  29. /// <summary>
  30. /// </summary>
  31. Udp = 17,
  32. } // SocketOptionLevel
  33. } // System.Net.Sockets