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
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.Net.Mime
{
// Token: 0x020002CC RID: 716
[Token(Token = "0x20002CC")]
internal interface IEncodableStream
{
// Token: 0x060012EA RID: 4842
[Token(Token = "0x60012EA")]
[Address(Slot = "0")]
int DecodeBytes(byte[] buffer, int offset, int count);
// Token: 0x060012EB RID: 4843
[Token(Token = "0x60012EB")]
[Address(Slot = "1")]
int EncodeBytes(byte[] buffer, int offset, int count);
// Token: 0x060012EC RID: 4844
[Token(Token = "0x60012EC")]
[Address(Slot = "2")]
string GetEncodedString();
}
}