This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,95 @@
using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents a URI prefix and the associated class that handles creating Web requests for the prefix. This class cannot be inherited.</summary>
// Token: 0x020003AA RID: 938
[Token(Token = "0x20003AA")]
public sealed class WebRequestModuleElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class.</summary>
// Token: 0x060018E0 RID: 6368 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018E0")]
[Address(RVA = "0xDD8A40", Offset = "0xDD7A40", VA = "0x180DD8A40")]
public WebRequestModuleElement()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class using the specified URI prefix and type information.</summary>
/// <param name="prefix">A string containing a URI prefix.</param>
/// <param name="type">A string containing the type and assembly information for the class that handles creating requests for resources that use the <paramref name="prefix" /> URI prefix.</param>
// Token: 0x060018E1 RID: 6369 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018E1")]
[Address(RVA = "0xDD8AA0", Offset = "0xDD7AA0", VA = "0x180DD8AA0")]
public WebRequestModuleElement(string prefix, string type)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebRequestModuleElement" /> class using the specified URI prefix and type identifier.</summary>
/// <param name="prefix">A string containing a URI prefix.</param>
/// <param name="type">A <see cref="T:System.Type" /> that identifies the class that handles creating requests for resources that use the <paramref name="prefix" /> URI prefix.</param>
// Token: 0x060018E2 RID: 6370 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018E2")]
[Address(RVA = "0xDD8A70", Offset = "0xDD7A70", VA = "0x180DD8A70")]
public WebRequestModuleElement(string prefix, Type type)
{
}
/// <summary>Gets or sets the URI prefix for the current Web request module.</summary>
/// <returns>A string that contains a URI prefix.</returns>
// Token: 0x1700058F RID: 1423
// (get) Token: 0x060018E3 RID: 6371 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060018E4 RID: 6372 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700058F")]
public string Prefix
{
[Token(Token = "0x60018E3")]
[Address(RVA = "0xDD8AD0", Offset = "0xDD7AD0", VA = "0x180DD8AD0")]
get
{
return null;
}
[Token(Token = "0x60018E4")]
[Address(RVA = "0xDD8B60", Offset = "0xDD7B60", VA = "0x180DD8B60")]
set
{
}
}
// Token: 0x17000590 RID: 1424
// (get) Token: 0x060018E5 RID: 6373 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000590")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x60018E5")]
[Address(RVA = "0xDD8B00", Offset = "0xDD7B00", VA = "0x180DD8B00", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets or sets a class that creates Web requests.</summary>
/// <returns>A <see cref="T:System.Type" /> instance that identifies a Web request module.</returns>
// Token: 0x17000591 RID: 1425
// (get) Token: 0x060018E6 RID: 6374 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060018E7 RID: 6375 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000591")]
public Type Type
{
[Token(Token = "0x60018E6")]
[Address(RVA = "0xDD8B30", Offset = "0xDD7B30", VA = "0x180DD8B30")]
get
{
return null;
}
[Token(Token = "0x60018E7")]
[Address(RVA = "0xDD8B90", Offset = "0xDD7B90", VA = "0x180DD8B90")]
set
{
}
}
}
}