scripts
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
|
||||
namespace System.Net.Sockets
|
||||
{
|
||||
/// <summary>Defines socket option levels for the <see cref="M:System.Net.Sockets.Socket.SetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,System.Int32)" /> and <see cref="M:System.Net.Sockets.Socket.GetSocketOption(System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName)" /> methods.</summary>
|
||||
// Token: 0x020001F1 RID: 497
|
||||
public enum SocketOptionLevel
|
||||
{
|
||||
/// <summary>
|
||||
/// <see cref="T:System.Net.Sockets.Socket" /> options apply to all sockets.</summary>
|
||||
// Token: 0x04000EEB RID: 3819
|
||||
Socket = 65535,
|
||||
/// <summary>
|
||||
/// <see cref="T:System.Net.Sockets.Socket" /> options apply only to IP sockets.</summary>
|
||||
// Token: 0x04000EEC RID: 3820
|
||||
IP = 0,
|
||||
/// <summary>
|
||||
/// <see cref="T:System.Net.Sockets.Socket" /> options apply only to IPv6 sockets.</summary>
|
||||
// Token: 0x04000EED RID: 3821
|
||||
IPv6 = 41,
|
||||
/// <summary>
|
||||
/// <see cref="T:System.Net.Sockets.Socket" /> options apply only to TCP sockets.</summary>
|
||||
// Token: 0x04000EEE RID: 3822
|
||||
Tcp = 6,
|
||||
/// <summary>
|
||||
/// <see cref="T:System.Net.Sockets.Socket" /> options apply only to UDP sockets.</summary>
|
||||
// Token: 0x04000EEF RID: 3823
|
||||
Udp = 17
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user