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
@@ -0,0 +1,28 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Establishes a <see cref="P:System.Xml.Serialization.IXmlTextParser.Normalized" /> property for use by the .NET Framework infrastructure.</summary>
// Token: 0x02000111 RID: 273
[Token(Token = "0x2000111")]
public interface IXmlTextParser
{
/// <summary>Gets or sets whether white space and attribute values are normalized.</summary>
/// <returns>
/// <see langword="true" /> if white space attributes values are normalized; otherwise, <see langword="false" />.</returns>
// Token: 0x1700034A RID: 842
// (get) Token: 0x06000C90 RID: 3216
// (set) Token: 0x06000C91 RID: 3217
[Token(Token = "0x1700034A")]
bool Normalized
{
[Token(Token = "0x6000C90")]
[Address(Slot = "0")]
get;
[Token(Token = "0x6000C91")]
[Address(Slot = "1")]
set;
}
}
}