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
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Mime
{
// Token: 0x020002C8 RID: 712
[Token(Token = "0x20002C8")]
internal interface IEncodableStream
{
// Token: 0x060012D4 RID: 4820
[Token(Token = "0x60012D4")]
[Address(Slot = "0")]
int DecodeBytes(byte[] buffer, int offset, int count);
// Token: 0x060012D5 RID: 4821
[Token(Token = "0x60012D5")]
[Address(Slot = "1")]
int EncodeBytes(byte[] buffer, int offset, int count);
// Token: 0x060012D6 RID: 4822
[Token(Token = "0x60012D6")]
[Address(Slot = "2")]
string GetEncodedString();
}
}