using System;
namespace System.Net.Sockets
{
/// Describes states for a .
// Token: 0x020001F0 RID: 496
[Flags]
public enum SocketInformationOptions
{
/// The is nonblocking.
// Token: 0x04000EE6 RID: 3814
NonBlocking = 1,
/// The is connected.
// Token: 0x04000EE7 RID: 3815
Connected = 2,
/// The is listening for new connections.
// Token: 0x04000EE8 RID: 3816
Listening = 4,
/// The uses overlapped I/O.
// Token: 0x04000EE9 RID: 3817
UseOnlyOverlappedIO = 8
}
}