This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
using System;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml
{
// Token: 0x02000070 RID: 112
[Token(Token = "0x2000070")]
internal class SafeAsciiDecoder : Decoder
{
// Token: 0x060004E4 RID: 1252 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60004E4")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SafeAsciiDecoder()
{
}
// Token: 0x060004E5 RID: 1253 RVA: 0x00003FC0 File Offset: 0x000021C0
[Token(Token = "0x60004E5")]
[Address(RVA = "0x4C30B0", Offset = "0x4C1EB0", VA = "0x1804C30B0", Slot = "5")]
public override int GetCharCount(byte[] bytes, int index, int count)
{
return 0;
}
// Token: 0x060004E6 RID: 1254 RVA: 0x00003FD8 File Offset: 0x000021D8
[Token(Token = "0x60004E6")]
[Address(RVA = "0x4C3BE0", Offset = "0x4C29E0", VA = "0x1804C3BE0", Slot = "8")]
public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
{
return 0;
}
// Token: 0x060004E7 RID: 1255 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60004E7")]
[Address(RVA = "0x4C3B20", Offset = "0x4C2920", VA = "0x1804C3B20", Slot = "11")]
public override void Convert(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex, int charCount, bool flush, out int bytesUsed, out int charsUsed, out bool completed)
{
}
}
}