71 lines
2.7 KiB
C#
71 lines
2.7 KiB
C#
using System;
|
|
using System.Text;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Serialization
|
|
{
|
|
/// <summary>Indicates to the <see cref="T:System.Xml.Serialization.XmlSerializer" /> that the member must be treated as XML text when the class that contains it is serialized or deserialized.</summary>
|
|
// Token: 0x0200014B RID: 331
|
|
[Token(Token = "0x200014B")]
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
|
|
public class XmlTextAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTextAttribute" /> class.</summary>
|
|
// Token: 0x06000E4A RID: 3658 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000E4A")]
|
|
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
|
|
public XmlTextAttribute()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets the XML Schema definition language (XSD) data type of the text generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
|
|
/// <returns>An XML Schema (XSD) data type, as defined by the World Wide Web Consortium (www.w3.org) document "XML Schema Part 2: Datatypes".</returns>
|
|
/// <exception cref="T:System.Exception">The XML Schema data type you have specified cannot be mapped to the .NET data type. </exception>
|
|
/// <exception cref="T:System.InvalidOperationException">The XML Schema data type you have specified is invalid for the property and cannot be converted to the member type. </exception>
|
|
// Token: 0x170003AF RID: 943
|
|
// (get) Token: 0x06000E4B RID: 3659 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170003AF")]
|
|
public string DataType
|
|
{
|
|
[Token(Token = "0x6000E4B")]
|
|
[Address(RVA = "0x690010", Offset = "0x68F010", VA = "0x180690010")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the type of the member.</summary>
|
|
/// <returns>The <see cref="T:System.Type" /> of the member.</returns>
|
|
// Token: 0x170003B0 RID: 944
|
|
// (get) Token: 0x06000E4C RID: 3660 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170003B0")]
|
|
public Type Type
|
|
{
|
|
[Token(Token = "0x6000E4C")]
|
|
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000E4D RID: 3661 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000E4D")]
|
|
[Address(RVA = "0x68FF80", Offset = "0x68EF80", VA = "0x18068FF80")]
|
|
internal void AddKeyHash(StringBuilder sb)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400075B RID: 1883
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400075B")]
|
|
private string dataType;
|
|
|
|
// Token: 0x0400075C RID: 1884
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x400075C")]
|
|
private Type type;
|
|
}
|
|
}
|