ProtocolFamily.cs 496 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // System.Net.Sockets.ProtocolFamily.cs
  3. //
  4. // Author:
  5. // Andrew Sutton
  6. //
  7. // (C) Andrew Sutton
  8. //
  9. namespace System.Net.Sockets
  10. {
  11. public enum ProtocolFamily
  12. {
  13. AppleTalk,
  14. Atm,
  15. Banyan,
  16. Ccitt,
  17. Chaos,
  18. Cluster,
  19. DataKit,
  20. DataLink,
  21. DecNet,
  22. Ecma,
  23. FireFox,
  24. HyperChannel,
  25. Ieee12844,
  26. ImpLink,
  27. InterNetwork,
  28. InterNetworkV6,
  29. Ipx,
  30. Irda,
  31. Iso,
  32. Lat,
  33. Max,
  34. NetBios,
  35. NetworkDesigners,
  36. NS,
  37. Osi,
  38. Pup,
  39. Sna,
  40. Unix,
  41. Unknown,
  42. Unspecified,
  43. VoiceView
  44. }
  45. }