Files
Apr2020-Cpp2Il-Dump/System/Net/Configuration/ConnectionManagementSection.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

49 lines
1.7 KiB
C#

using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents the configuration section for connection management. This class cannot be inherited.</summary>
// Token: 0x02000393 RID: 915
[Token(Token = "0x2000393")]
public sealed class ConnectionManagementSection : ConfigurationSection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementSection" /> class.</summary>
// Token: 0x0600182D RID: 6189 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600182D")]
[Address(RVA = "0x29DA320", Offset = "0x29D9120", VA = "0x1829DA320")]
public ConnectionManagementSection()
{
}
/// <summary>Gets the collection of connection management objects in the section.</summary>
/// <returns>A <see cref="T:System.Net.Configuration.ConnectionManagementElementCollection" /> that contains the connection management information for the local computer.</returns>
// Token: 0x1700052C RID: 1324
// (get) Token: 0x0600182E RID: 6190 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700052C")]
public ConnectionManagementElementCollection ConnectionManagement
{
[Token(Token = "0x600182E")]
[Address(RVA = "0x29DA350", Offset = "0x29D9150", VA = "0x1829DA350")]
get
{
return null;
}
}
// Token: 0x1700052D RID: 1325
// (get) Token: 0x0600182F RID: 6191 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700052D")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x600182F")]
[Address(RVA = "0x29DA380", Offset = "0x29D9180", VA = "0x1829DA380", Slot = "4")]
get
{
return null;
}
}
}
}