using System; using System.Configuration; using Cpp2IlInjected; namespace System.Net.Configuration { /// Represents a URI prefix and the associated class that handles creating Web requests for the prefix. This class cannot be inherited. // Token: 0x020003AE RID: 942 [Token(Token = "0x20003AE")] public sealed class WebRequestModuleElement : ConfigurationElement { /// Initializes a new instance of the class. // Token: 0x060018F7 RID: 6391 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60018F7")] [Address(RVA = "0x29EB320", Offset = "0x29EA120", VA = "0x1829EB320")] public WebRequestModuleElement() { } /// Initializes a new instance of the class using the specified URI prefix and type information. /// A string containing a URI prefix. /// A string containing the type and assembly information for the class that handles creating requests for resources that use the URI prefix. // Token: 0x060018F8 RID: 6392 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60018F8")] [Address(RVA = "0x29EB380", Offset = "0x29EA180", VA = "0x1829EB380")] public WebRequestModuleElement(string prefix, string type) { } /// Initializes a new instance of the class using the specified URI prefix and type identifier. /// A string containing a URI prefix. /// A that identifies the class that handles creating requests for resources that use the URI prefix. // Token: 0x060018F9 RID: 6393 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60018F9")] [Address(RVA = "0x29EB350", Offset = "0x29EA150", VA = "0x1829EB350")] public WebRequestModuleElement(string prefix, Type type) { } /// Gets or sets the URI prefix for the current Web request module. /// A string that contains a URI prefix. // Token: 0x17000593 RID: 1427 // (get) Token: 0x060018FA RID: 6394 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060018FB RID: 6395 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000593")] public string Prefix { [Token(Token = "0x60018FA")] [Address(RVA = "0x29EB3B0", Offset = "0x29EA1B0", VA = "0x1829EB3B0")] get { return null; } [Token(Token = "0x60018FB")] [Address(RVA = "0x29EB440", Offset = "0x29EA240", VA = "0x1829EB440")] set { } } // Token: 0x17000594 RID: 1428 // (get) Token: 0x060018FC RID: 6396 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000594")] protected override ConfigurationPropertyCollection Properties { [Token(Token = "0x60018FC")] [Address(RVA = "0x29EB3E0", Offset = "0x29EA1E0", VA = "0x1829EB3E0", Slot = "4")] get { return null; } } /// Gets or sets a class that creates Web requests. /// A instance that identifies a Web request module. // Token: 0x17000595 RID: 1429 // (get) Token: 0x060018FD RID: 6397 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060018FE RID: 6398 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000595")] public Type Type { [Token(Token = "0x60018FD")] [Address(RVA = "0x29EB410", Offset = "0x29EA210", VA = "0x1829EB410")] get { return null; } [Token(Token = "0x60018FE")] [Address(RVA = "0x29EB470", Offset = "0x29EA270", VA = "0x1829EB470")] set { } } } }