Files
2026-06-04 11:42:34 +02:00

20 lines
768 B
C#

using System;
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: 0x020001F4 RID: 500
public enum SocketShutdown
{
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for receiving. This field is constant.</summary>
// Token: 0x04000F1F RID: 3871
Receive,
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for sending. This field is constant.</summary>
// Token: 0x04000F20 RID: 3872
Send,
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for both sending and receiving. This field is constant.</summary>
// Token: 0x04000F21 RID: 3873
Both
}
}