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
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
// Token: 0x02000015 RID: 21
[Token(Token = "0x2000015")]
internal interface IDtdParser
{
// Token: 0x0600005F RID: 95
[Token(Token = "0x600005F")]
[Address(Slot = "0")]
IDtdInfo ParseInternalDtd(IDtdParserAdapter adapter, bool saveInternalSubset);
// Token: 0x06000060 RID: 96
[Token(Token = "0x6000060")]
[Address(Slot = "1")]
IDtdInfo ParseFreeFloatingDtd(string baseUri, string docTypeName, string publicId, string systemId, string internalSubset, IDtdParserAdapter adapter);
}
}