oh dear
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Serialization
|
||||
{
|
||||
/// <summary>Specifies that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> must serialize the class member as an XML attribute.</summary>
|
||||
// Token: 0x0200008C RID: 140
|
||||
[Token(Token = "0x200008C")]
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
|
||||
public class XmlAttributeAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class and specifies the name of the generated XML attribute.</summary>
|
||||
/// <param name="attributeName">The name of the XML attribute that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates. </param>
|
||||
// Token: 0x0600058A RID: 1418 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600058A")]
|
||||
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
|
||||
public XmlAttributeAttribute(string attributeName)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040002A7 RID: 679
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40002A7")]
|
||||
private string attributeName;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Serialization
|
||||
{
|
||||
/// <summary>Indicates that a public field or property represents an XML element when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes or deserializes the object that contains it.</summary>
|
||||
// Token: 0x0200008D RID: 141
|
||||
[Token(Token = "0x200008D")]
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
|
||||
public class XmlElementAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> and specifies the name of the XML element and a derived type for the member to which the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> is applied. This member type is used when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes the object that contains it.</summary>
|
||||
/// <param name="elementName">The XML element name of the serialized member. </param>
|
||||
/// <param name="type">The <see cref="T:System.Type" /> of an object derived from the member's type. </param>
|
||||
// Token: 0x0600058B RID: 1419 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600058B")]
|
||||
[Address(RVA = "0x5C4960", Offset = "0x5C3760", VA = "0x1805C4960")]
|
||||
public XmlElementAttribute(string elementName, Type type)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040002A8 RID: 680
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40002A8")]
|
||||
private string elementName;
|
||||
|
||||
// Token: 0x040002A9 RID: 681
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x40002A9")]
|
||||
private Type type;
|
||||
|
||||
// Token: 0x040002AA RID: 682
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x40002AA")]
|
||||
private int order;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Serialization
|
||||
{
|
||||
/// <summary>Controls how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration member.</summary>
|
||||
// Token: 0x0200008E RID: 142
|
||||
[Token(Token = "0x200008E")]
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public class XmlEnumAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class, and specifies the XML value that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates or recognizes (when it serializes or deserializes the enumeration, respectively).</summary>
|
||||
/// <param name="name">The overriding name of the enumeration member. </param>
|
||||
// Token: 0x0600058C RID: 1420 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600058C")]
|
||||
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
|
||||
public XmlEnumAttribute(string name)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040002AB RID: 683
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40002AB")]
|
||||
private string name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Serialization
|
||||
{
|
||||
/// <summary>Instructs the <see cref="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.TextWriter,System.Object)" /> method of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> not to serialize the public field or public read/write property value.</summary>
|
||||
// Token: 0x0200008F RID: 143
|
||||
[Token(Token = "0x200008F")]
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
|
||||
public class XmlIgnoreAttribute : Attribute
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlIgnoreAttribute" /> class.</summary>
|
||||
// Token: 0x0600058D RID: 1421 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600058D")]
|
||||
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
|
||||
public XmlIgnoreAttribute()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user