25 lines
913 B
C#
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: 0x020002E4 RID: 740
|
|
[Token(Token = "0x20002E4")]
|
|
public enum SocketShutdown
|
|
{
|
|
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for receiving. This field is constant.</summary>
|
|
// Token: 0x04000C7C RID: 3196
|
|
[Token(Token = "0x4000C7C")]
|
|
Receive,
|
|
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for sending. This field is constant.</summary>
|
|
// Token: 0x04000C7D RID: 3197
|
|
[Token(Token = "0x4000C7D")]
|
|
Send,
|
|
/// <summary>Disables a <see cref="T:System.Net.Sockets.Socket" /> for both sending and receiving. This field is constant.</summary>
|
|
// Token: 0x04000C7E RID: 3198
|
|
[Token(Token = "0x4000C7E")]
|
|
Both
|
|
}
|
|
}
|