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: 0x0200038D RID: 909 [Token(Token = "0x200038D")] public sealed class ConnectionManagementElement : ConfigurationElement { /// Initializes a new instance of the class. // Token: 0x06001802 RID: 6146 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001802")] [Address(RVA = "0xDC78E0", Offset = "0xDC68E0", VA = "0x180DC78E0")] 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: 0x06001803 RID: 6147 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001803")] [Address(RVA = "0xDC7910", Offset = "0xDC6910", VA = "0x180DC7910")] 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: 0x17000524 RID: 1316 // (get) Token: 0x06001804 RID: 6148 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06001805 RID: 6149 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000524")] public string Address { [Token(Token = "0x6001804")] [Address(RVA = "0xDC7940", Offset = "0xDC6940", VA = "0x180DC7940")] get { return null; } [Token(Token = "0x6001805")] [Address(RVA = "0xDC79D0", Offset = "0xDC69D0", VA = "0x180DC79D0")] 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: 0x17000525 RID: 1317 // (get) Token: 0x06001806 RID: 6150 RVA: 0x0000A728 File Offset: 0x00008928 // (set) Token: 0x06001807 RID: 6151 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000525")] public int MaxConnection { [Token(Token = "0x6001806")] [Address(RVA = "0xDC7970", Offset = "0xDC6970", VA = "0x180DC7970")] get { return 0; } [Token(Token = "0x6001807")] [Address(RVA = "0xDC7A00", Offset = "0xDC6A00", VA = "0x180DC7A00")] set { } } // Token: 0x17000526 RID: 1318 // (get) Token: 0x06001808 RID: 6152 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000526")] protected override ConfigurationPropertyCollection Properties { [Token(Token = "0x6001808")] [Address(RVA = "0xDC79A0", Offset = "0xDC69A0", VA = "0x180DC79A0", Slot = "4")] get { return null; } } } }