This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,77 @@
using System;
using System.Configuration;
using Cpp2IlInjected;
namespace System.Net.Configuration
{
/// <summary>Represents the WebUtility element in the configuration file.</summary>
// Token: 0x020003AB RID: 939
[Token(Token = "0x20003AB")]
public sealed class WebUtilityElement : ConfigurationElement
{
/// <summary>Initializes a new instance of the <see cref="T:System.Net.Configuration.WebUtilityElement" /> class.</summary>
// Token: 0x060018DF RID: 6367 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018DF")]
[Address(RVA = "0x29EB590", Offset = "0x29EA390", VA = "0x1829EB590")]
public WebUtilityElement()
{
}
// Token: 0x1700058D RID: 1421
// (get) Token: 0x060018E0 RID: 6368 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700058D")]
protected override ConfigurationPropertyCollection Properties
{
[Token(Token = "0x60018E0")]
[Address(RVA = "0x29EB5C0", Offset = "0x29EA3C0", VA = "0x1829EB5C0", Slot = "4")]
get
{
return null;
}
}
/// <summary>Gets the default Unicode decoding conformance behavior used for an <see cref="T:System.Net.WebUtility" /> object.</summary>
/// <returns>Returns <see cref="T:System.Net.Configuration.UnicodeDecodingConformance" />.
/// The default Unicode decoding behavior.</returns>
// Token: 0x1700058E RID: 1422
// (get) Token: 0x060018E1 RID: 6369 RVA: 0x0000AB78 File Offset: 0x00008D78
// (set) Token: 0x060018E2 RID: 6370 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700058E")]
public UnicodeDecodingConformance UnicodeDecodingConformance
{
[Token(Token = "0x60018E1")]
[Address(RVA = "0x29EB5F0", Offset = "0x29EA3F0", VA = "0x1829EB5F0")]
get
{
return UnicodeDecodingConformance.Auto;
}
[Token(Token = "0x60018E2")]
[Address(RVA = "0x29EB650", Offset = "0x29EA450", VA = "0x1829EB650")]
set
{
}
}
/// <summary>Gets the default Unicode encoding conformance behavior used for an <see cref="T:System.Net.WebUtility" /> object.</summary>
/// <returns>Returns <see cref="T:System.Net.Configuration.UnicodeEncodingConformance" />.
/// The default Unicode encoding behavior.</returns>
// Token: 0x1700058F RID: 1423
// (get) Token: 0x060018E3 RID: 6371 RVA: 0x0000AB90 File Offset: 0x00008D90
// (set) Token: 0x060018E4 RID: 6372 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700058F")]
public UnicodeEncodingConformance UnicodeEncodingConformance
{
[Token(Token = "0x60018E3")]
[Address(RVA = "0x29EB620", Offset = "0x29EA420", VA = "0x1829EB620")]
get
{
return UnicodeEncodingConformance.Auto;
}
[Token(Token = "0x60018E4")]
[Address(RVA = "0x29EB680", Offset = "0x29EA480", VA = "0x1829EB680")]
set
{
}
}
}
}