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
+75
View File
@@ -0,0 +1,75 @@
using System;
using System.Net.Configuration;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Provides methods for encoding and decoding URLs when processing Web requests.</summary>
// Token: 0x02000246 RID: 582
[Token(Token = "0x2000246")]
public static class WebUtility
{
// Token: 0x06000EAC RID: 3756 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000EAC")]
[Address(RVA = "0x40C370", Offset = "0x40B170", VA = "0x18040C370")]
private static byte[] UrlEncode(byte[] bytes, int offset, int count, bool alwaysCreateNewReturnValue)
{
return null;
}
// Token: 0x06000EAD RID: 3757 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000EAD")]
[Address(RVA = "0x40C440", Offset = "0x40B240", VA = "0x18040C440")]
private static byte[] UrlEncode(byte[] bytes, int offset, int count)
{
return null;
}
/// <summary>Converts a text string into a URL-encoded string.</summary>
/// <param name="value">The text to URL-encode.</param>
/// <returns>A URL-encoded string.</returns>
// Token: 0x06000EAE RID: 3758 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000EAE")]
[Address(RVA = "0x40C250", Offset = "0x40B050", VA = "0x18040C250")]
public static string UrlEncode(string value)
{
return null;
}
// Token: 0x06000EAF RID: 3759 RVA: 0x00007350 File Offset: 0x00005550
[Token(Token = "0x6000EAF")]
[Address(RVA = "0x40C1C0", Offset = "0x40AFC0", VA = "0x18040C1C0")]
private static char IntToHex(int n)
{
return '\0';
}
// Token: 0x06000EB0 RID: 3760 RVA: 0x00007368 File Offset: 0x00005568
[Token(Token = "0x6000EB0")]
[Address(RVA = "0x40C1D0", Offset = "0x40AFD0", VA = "0x18040C1D0")]
private static bool IsUrlSafeChar(char ch)
{
return default(bool);
}
// Token: 0x06000EB1 RID: 3761 RVA: 0x00007380 File Offset: 0x00005580
[Token(Token = "0x6000EB1")]
[Address(RVA = "0x40C850", Offset = "0x40B650", VA = "0x18040C850")]
private static bool ValidateUrlEncodingParameters(byte[] bytes, int offset, int count)
{
return default(bool);
}
// Token: 0x0400088B RID: 2187
[Token(Token = "0x400088B")]
private static readonly char[] _htmlEntityEndingChars;
// Token: 0x0400088C RID: 2188
[Token(Token = "0x400088C")]
private static UnicodeDecodingConformance _htmlDecodeConformance;
// Token: 0x0400088D RID: 2189
[Token(Token = "0x400088D")]
private static UnicodeEncodingConformance _htmlEncodeConformance;
}
}