Files
Apr2020-Cpp2Il-Dump/System/Net/Sockets/SocketShutdown.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

25 lines
913 B
C#

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