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
+31
View File
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace System.Xml
{
// Token: 0x02000011 RID: 17
[Token(Token = "0x2000011")]
internal interface IDtdAttributeListInfo
{
// Token: 0x17000026 RID: 38
// (get) Token: 0x06000045 RID: 69
[Token(Token = "0x17000026")]
bool HasNonCDataAttributes
{
[Token(Token = "0x6000045")]
[Address(Slot = "0")]
get;
}
// Token: 0x06000046 RID: 70
[Token(Token = "0x6000046")]
[Address(Slot = "1")]
IDtdAttributeInfo LookupAttribute(string prefix, string localName);
// Token: 0x06000047 RID: 71
[Token(Token = "0x6000047")]
[Address(Slot = "2")]
IEnumerable<IDtdDefaultAttributeInfo> LookupDefaultAttributes();
}
}