Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Net.Sockets/ProtocolFamily.cs')
-rw-r--r--mcs/class/System/System.Net.Sockets/ProtocolFamily.cs47
1 files changed, 0 insertions, 47 deletions
diff --git a/mcs/class/System/System.Net.Sockets/ProtocolFamily.cs b/mcs/class/System/System.Net.Sockets/ProtocolFamily.cs
deleted file mode 100644
index cf6d59acfc2..00000000000
--- a/mcs/class/System/System.Net.Sockets/ProtocolFamily.cs
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// System.Net.Sockets.ProtocolFamily.cs
-//
-// Author:
-// Andrew Sutton
-//
-// (C) Andrew Sutton
-//
-
-namespace System.Net.Sockets
-{
- public enum ProtocolFamily
- {
- Unknown = -1,
- Unspecified = 0,
- Unix,
- InterNetwork,
- ImpLink,
- Pup,
- Chaos,
- Ipx,
- Iso,
- Ecma,
- DataKit,
- Ccitt,
- Sna,
- DecNet,
- DataLink,
- Lat,
- HyperChannel,
- AppleTalk,
- NetBios,
- VoiceView,
- FireFox,
- Banyan = 0x15,
- Atm,
- InterNetworkV6,
- Cluster,
- Ieee12844,
- Irda,
- NetworkDesigners = 0x1c,
- Max,
-
- NS = Ipx,
- Osi = Iso,
- }
-}