Files
Aug2021-Cpp2IL-Dump/System/Net/Configuration/Ipv6Element.cs
T
2026-04-10 22:50:51 +02:00

56 lines
1.8 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Determines whether Internet Protocol version 6 is enabled on the local computer. This class cannot be inherited.</summary>
// Token: 0x0200039F RID: 927
[Token(Token = "0x200039F")]
public sealed class Ipv6Element : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.Ipv6Element" /> class.</summary>
// Token: 0x06001874 RID: 6260 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001874")]
[Address(RVA = "0x29E7D00", Offset = "0x29E6B00", VA = "0x1829E7D00")]
public Ipv6Element()
{
}
/// <summary>Gets or sets a Boolean value that indicates whether Internet Protocol version 6 is enabled on the local computer.</summary>
/// <returns>
/// <see langword="true" /> if IPv6 is enabled; otherwise, <see langword="false" />.</returns>
// Token: 0x17000552 RID: 1362
// (get) Token: 0x06001875 RID: 6261 RVA: 0x0000A968 File Offset: 0x00008B68
// (set) Token: 0x06001876 RID: 6262 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000552")]
public bool Enabled
{
[Token(Token = "0x6001875")]
[Address(RVA = "0x29E7D30", Offset = "0x29E6B30", VA = "0x1829E7D30")]
get
{
return default(bool);
}
[Token(Token = "0x6001876")]
[Address(RVA = "0x29E7D90", Offset = "0x29E6B90", VA = "0x1829E7D90")]
set
{
}
}
// Token: 0x17000553 RID: 1363
// (get) Token: 0x06001877 RID: 6263 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000553")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x6001877")]
[Address(RVA = "0x29E7D60", Offset = "0x29E6B60", VA = "0x1829E7D60", Slot = "4")]
get
{
return null;
}
}
}
}