Files
27Aug2021-Cpp2IL-Dump/System/Net/Configuration/SocketElement.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

107 lines
3.7 KiB
C#

using System;
using System.Configuration;
using System.Net.Sockets;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents information used to configure <see cref="T:System.Net.Sockets.Socket" /> objects. This class cannot be inherited.</summary>
// Token: 0x020003A5 RID: 933
[Token(Token = "0x20003A5")]
public sealed class SocketElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.SocketElement" /> class.</summary>
// Token: 0x060018BA RID: 6330 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018BA")]
[Address(RVA = "0xDD84B0", Offset = "0xDD74B0", VA = "0x180DD84B0")]
public SocketElement()
{
}
/// <summary>Gets or sets a Boolean value that specifies whether completion ports are used when accepting connections.</summary>
/// <returns>
/// <see langword="true" /> to use completion ports; otherwise, <see langword="false" />.</returns>
// Token: 0x17000583 RID: 1411
// (get) Token: 0x060018BB RID: 6331 RVA: 0x0000AB00 File Offset: 0x00008D00
// (set) Token: 0x060018BC RID: 6332 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000583")]
public bool AlwaysUseCompletionPortsForAccept
{
[Token(Token = "0x60018BB")]
[Address(RVA = "0xDD84E0", Offset = "0xDD74E0", VA = "0x180DD84E0")]
get
{
return default(bool);
}
[Token(Token = "0x60018BC")]
[Address(RVA = "0xDD85A0", Offset = "0xDD75A0", VA = "0x180DD85A0")]
set
{
}
}
/// <summary>Gets or sets a Boolean value that specifies whether completion ports are used when making connections.</summary>
/// <returns>
/// <see langword="true" /> to use completion ports; otherwise, <see langword="false" />.</returns>
// Token: 0x17000584 RID: 1412
// (get) Token: 0x060018BD RID: 6333 RVA: 0x0000AB18 File Offset: 0x00008D18
// (set) Token: 0x060018BE RID: 6334 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000584")]
public bool AlwaysUseCompletionPortsForConnect
{
[Token(Token = "0x60018BD")]
[Address(RVA = "0xDD8510", Offset = "0xDD7510", VA = "0x180DD8510")]
get
{
return default(bool);
}
[Token(Token = "0x60018BE")]
[Address(RVA = "0xDD85D0", Offset = "0xDD75D0", VA = "0x180DD85D0")]
set
{
}
}
/// <summary>Gets or sets a value that specifies the default <see cref="T:System.Net.Sockets.IPProtectionLevel" /> to use for a socket.</summary>
/// <returns>The value of the <see cref="T:System.Net.Sockets.IPProtectionLevel" /> for the current instance.</returns>
// Token: 0x17000585 RID: 1413
// (get) Token: 0x060018BF RID: 6335 RVA: 0x0000AB30 File Offset: 0x00008D30
// (set) Token: 0x060018C0 RID: 6336 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000585")]
public IPProtectionLevel IPProtectionLevel
{
[Token(Token = "0x60018BF")]
[Address(RVA = "0xDD8540", Offset = "0xDD7540", VA = "0x180DD8540")]
get
{
return (IPProtectionLevel)0;
}
[Token(Token = "0x60018C0")]
[Address(RVA = "0xDD8600", Offset = "0xDD7600", VA = "0x180DD8600")]
set
{
}
}
// Token: 0x17000586 RID: 1414
// (get) Token: 0x060018C1 RID: 6337 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000586")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x60018C1")]
[Address(RVA = "0xDD8570", Offset = "0xDD7570", VA = "0x180DD8570", Slot = "4")]
get
{
return null;
}
}
// Token: 0x060018C2 RID: 6338 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018C2")]
[Address(RVA = "0xDD8480", Offset = "0xDD7480", VA = "0x180DD8480", Slot = "8")]
protected override void PostDeserialize()
{
}
}
}