using System;
using Cpp2IlInjected;
namespace System.Net.Sockets
{
/// Defines constants that are used by the method.
// Token: 0x020002E8 RID: 744
[Token(Token = "0x20002E8")]
public enum SocketShutdown
{
/// Disables a for receiving. This field is constant.
// Token: 0x04000C89 RID: 3209
[Token(Token = "0x4000C89")]
Receive,
/// Disables a for sending. This field is constant.
// Token: 0x04000C8A RID: 3210
[Token(Token = "0x4000C8A")]
Send,
/// Disables a for both sending and receiving. This field is constant.
// Token: 0x04000C8B RID: 3211
[Token(Token = "0x4000C8B")]
Both
}
}