| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.Net.Sockets.ProtocolFamily.cs
- //
- // Author:
- // Andrew Sutton
- //
- // (C) Andrew Sutton
- //
- namespace System.Net.Sockets
- {
- public enum ProtocolFamily
- {
- AppleTalk,
- Atm,
- Banyan,
- Ccitt,
- Chaos,
- Cluster,
- DataKit,
- DataLink,
- DecNet,
- Ecma,
- FireFox,
- HyperChannel,
- Ieee12844,
- ImpLink,
- InterNetwork,
- InterNetworkV6,
- Ipx,
- Irda,
- Iso,
- Lat,
- Max,
- NetBios,
- NetworkDesigners,
- NS,
- Osi,
- Pup,
- Sna,
- Unix,
- Unknown,
- Unspecified,
- VoiceView
- }
- }
|