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/SocketInformationOptions.cs')
-rw-r--r--mcs/class/System/System.Net.Sockets/SocketInformationOptions.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/System/System.Net.Sockets/SocketInformationOptions.cs b/mcs/class/System/System.Net.Sockets/SocketInformationOptions.cs
index 947f584575c..c78ad2a4fff 100644
--- a/mcs/class/System/System.Net.Sockets/SocketInformationOptions.cs
+++ b/mcs/class/System/System.Net.Sockets/SocketInformationOptions.cs
@@ -36,10 +36,10 @@ namespace System.Net.Sockets
{
[FlagsAttribute]
public enum SocketInformationOptions {
- Connected = 0x00000000,
- Listening = 0x00000001,
- NonBlocking = 0x00000002,
- UseOnlyOverlappedIO = 0x00000004
+ NonBlocking = 0x00000001,
+ Connected = 0x00000002,
+ Listening = 0x00000004,
+ UseOnlyOverlappedIO = 0x00000008
}
}