using System;
namespace System.Net.Sockets
{
/// Defines constants that are used by the method.
// Token: 0x020001F4 RID: 500
public enum SocketShutdown
{
/// Disables a for receiving. This field is constant.
// Token: 0x04000F1F RID: 3871
Receive,
/// Disables a for sending. This field is constant.
// Token: 0x04000F20 RID: 3872
Send,
/// Disables a for both sending and receiving. This field is constant.
// Token: 0x04000F21 RID: 3873
Both
}
}