24 lines
810 B
C#
24 lines
810 B
C#
using System;
|
|
|
|
namespace System.Net.Sockets
|
|
{
|
|
/// <summary>Describes states for a <see cref="T:System.Net.Sockets.Socket" />.</summary>
|
|
// Token: 0x020001F0 RID: 496
|
|
[Flags]
|
|
public enum SocketInformationOptions
|
|
{
|
|
/// <summary>The <see cref="T:System.Net.Sockets.Socket" /> is nonblocking.</summary>
|
|
// Token: 0x04000EE6 RID: 3814
|
|
NonBlocking = 1,
|
|
/// <summary>The <see cref="T:System.Net.Sockets.Socket" /> is connected.</summary>
|
|
// Token: 0x04000EE7 RID: 3815
|
|
Connected = 2,
|
|
/// <summary>The <see cref="T:System.Net.Sockets.Socket" /> is listening for new connections.</summary>
|
|
// Token: 0x04000EE8 RID: 3816
|
|
Listening = 4,
|
|
/// <summary>The <see cref="T:System.Net.Sockets.Socket" /> uses overlapped I/O.</summary>
|
|
// Token: 0x04000EE9 RID: 3817
|
|
UseOnlyOverlappedIO = 8
|
|
}
|
|
}
|