using System;
using Cpp2IlInjected;
namespace System.Net.Sockets
{
/// Defines constants that are used by the method.
// Token: 0x020002E4 RID: 740
[Token(Token = "0x20002E4")]
public enum SocketShutdown
{
/// Disables a for receiving. This field is constant.
// Token: 0x04000C7C RID: 3196
[Token(Token = "0x4000C7C")]
Receive,
/// Disables a for sending. This field is constant.
// Token: 0x04000C7D RID: 3197
[Token(Token = "0x4000C7D")]
Send,
/// Disables a for both sending and receiving. This field is constant.
// Token: 0x04000C7E RID: 3198
[Token(Token = "0x4000C7E")]
Both
}
}