Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200038F RID: 911
[Token(Token = "0x200038F")]
public sealed class ConnectionManagementSection : ConfigurationSection
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.ConnectionManagementSection" /> class.</summary>
// Token: 0x06001816 RID: 6166 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001816")]
[Address(RVA = "0xDC7A30", Offset = "0xDC6A30", VA = "0x180DC7A30")]
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: 0x17000528 RID: 1320
// (get) Token: 0x06001817 RID: 6167 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000528")]
public ConnectionManagementElementCollection ConnectionManagement
{
[Token(Token = "0x6001817")]
[Address(RVA = "0xDC7A60", Offset = "0xDC6A60", VA = "0x180DC7A60")]
get
{
return null;
}
}
// Token: 0x17000529 RID: 1321
// (get) Token: 0x06001818 RID: 6168 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000529")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x6001818")]
[Address(RVA = "0xDC7A90", Offset = "0xDC6A90", VA = "0x180DC7A90", Slot = "4")]
get
{
return null;
}
}
}
}