29 lines
879 B
C#
29 lines
879 B
C#
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;
|
|
}
|
|
}
|
|
}
|