using System; using System.Configuration; using Cpp2IlInjected; namespace System.Net.Configuration { /// Represents the maximum number of connections to a remote computer. This class cannot be inherited. // Token: 0x02000391 RID: 913 [Token(Token = "0x2000391")] public sealed class ConnectionManagementElement : ConfigurationElement { /// Initializes a new instance of the class. // Token: 0x06001819 RID: 6169 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001819")] [Address(RVA = "0x29DA1D0", Offset = "0x29D8FD0", VA = "0x1829DA1D0")] public ConnectionManagementElement() { } /// Initializes a new instance of the class with the specified address and connection limit information. /// A string that identifies the address of a remote computer. /// An integer that identifies the maximum number of connections allowed to from the local computer. // Token: 0x0600181A RID: 6170 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600181A")] [Address(RVA = "0x29DA200", Offset = "0x29D9000", VA = "0x1829DA200")] public ConnectionManagementElement(string address, int maxConnection) { } /// Gets or sets the address for remote computers. /// A string that contains a regular expression describing an IP address or DNS name. // Token: 0x17000528 RID: 1320 // (get) Token: 0x0600181B RID: 6171 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x0600181C RID: 6172 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000528")] public string Address { [Token(Token = "0x600181B")] [Address(RVA = "0x29DA230", Offset = "0x29D9030", VA = "0x1829DA230")] get { return null; } [Token(Token = "0x600181C")] [Address(RVA = "0x29DA2C0", Offset = "0x29D90C0", VA = "0x1829DA2C0")] set { } } /// Gets or sets the maximum number of connections that can be made to a remote computer. /// An integer that specifies the maximum number of connections. // Token: 0x17000529 RID: 1321 // (get) Token: 0x0600181D RID: 6173 RVA: 0x0000A740 File Offset: 0x00008940 // (set) Token: 0x0600181E RID: 6174 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000529")] public int MaxConnection { [Token(Token = "0x600181D")] [Address(RVA = "0x29DA260", Offset = "0x29D9060", VA = "0x1829DA260")] get { return 0; } [Token(Token = "0x600181E")] [Address(RVA = "0x29DA2F0", Offset = "0x29D90F0", VA = "0x1829DA2F0")] set { } } // Token: 0x1700052A RID: 1322 // (get) Token: 0x0600181F RID: 6175 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700052A")] protected override ConfigurationPropertyCollection Properties { [Token(Token = "0x600181F")] [Address(RVA = "0x29DA290", Offset = "0x29D9090", VA = "0x1829DA290", Slot = "4")] get { return null; } } } }