m
This commit is contained in:
@@ -0,0 +1,140 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml
|
||||
{
|
||||
/// <summary>Represents a notation declaration, such as <!NOTATION... >.</summary>
|
||||
// Token: 0x020000C3 RID: 195
|
||||
[Token(Token = "0x20000C3")]
|
||||
public class XmlNotation : XmlNode
|
||||
{
|
||||
// Token: 0x06000A27 RID: 2599 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000A27")]
|
||||
[Address(RVA = "0x4B2AA0", Offset = "0x4B1AA0", VA = "0x1804B2AA0")]
|
||||
internal XmlNotation(string name, string publicId, string systemId, XmlDocument doc)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the current node.</summary>
|
||||
/// <returns>The name of the notation.</returns>
|
||||
// Token: 0x170002E0 RID: 736
|
||||
// (get) Token: 0x06000A28 RID: 2600 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E0")]
|
||||
public override string Name
|
||||
{
|
||||
[Token(Token = "0x6000A28")]
|
||||
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "6")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the current node without the namespace prefix.</summary>
|
||||
/// <returns>For <see langword="XmlNotation" /> nodes, this property returns the name of the notation.</returns>
|
||||
// Token: 0x170002E1 RID: 737
|
||||
// (get) Token: 0x06000A29 RID: 2601 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170002E1")]
|
||||
public override string LocalName
|
||||
{
|
||||
[Token(Token = "0x6000A29")]
|
||||
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "36")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the type of the current node.</summary>
|
||||
/// <returns>The node type. For <see langword="XmlNotation" /> nodes, the value is XmlNodeType.Notation.</returns>
|
||||
// Token: 0x170002E2 RID: 738
|
||||
// (get) Token: 0x06000A2A RID: 2602 RVA: 0x00005988 File Offset: 0x00003B88
|
||||
[Token(Token = "0x170002E2")]
|
||||
public override XmlNodeType NodeType
|
||||
{
|
||||
[Token(Token = "0x6000A2A")]
|
||||
[Address(RVA = "0x4B2B30", Offset = "0x4B1B30", VA = "0x1804B2B30", Slot = "9")]
|
||||
get
|
||||
{
|
||||
return XmlNodeType.None;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates a duplicate of this node. Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</summary>
|
||||
/// <param name="deep">
|
||||
/// <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
|
||||
/// <returns>Returns a <see cref="T:System.Xml.XmlNode" /> copy of the node from which the method is called.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</exception>
|
||||
// Token: 0x06000A2B RID: 2603 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000A2B")]
|
||||
[Address(RVA = "0x4B2A30", Offset = "0x4B1A30", VA = "0x1804B2A30", Slot = "31")]
|
||||
public override XmlNode CloneNode(bool deep)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets a value indicating whether the node is read-only.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the node is read-only; otherwise <see langword="false" />.Because <see langword="XmlNotation" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
|
||||
// Token: 0x170002E3 RID: 739
|
||||
// (get) Token: 0x06000A2C RID: 2604 RVA: 0x000059A0 File Offset: 0x00003BA0
|
||||
[Token(Token = "0x170002E3")]
|
||||
public override bool IsReadOnly
|
||||
{
|
||||
[Token(Token = "0x6000A2C")]
|
||||
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "37")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the markup representing the children of this node.</summary>
|
||||
/// <returns>For <see langword="XmlNotation" /> nodes, String.Empty is returned.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">Attempting to set the property. </exception>
|
||||
// Token: 0x170002E4 RID: 740
|
||||
// (set) Token: 0x06000A2D RID: 2605 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x170002E4")]
|
||||
public override string InnerXml
|
||||
{
|
||||
[Token(Token = "0x6000A2D")]
|
||||
[Address(RVA = "0x4B2B40", Offset = "0x4B1B40", VA = "0x1804B2B40", Slot = "40")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />. This method has no effect on <see langword="XmlNotation" /> nodes.</summary>
|
||||
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
|
||||
// Token: 0x06000A2E RID: 2606 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000A2E")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "43")]
|
||||
public override void WriteTo(XmlWriter w)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. This method has no effect on <see langword="XmlNotation" /> nodes.</summary>
|
||||
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
|
||||
// Token: 0x06000A2F RID: 2607 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000A2F")]
|
||||
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
|
||||
public override void WriteContentTo(XmlWriter w)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400055C RID: 1372
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400055C")]
|
||||
private string publicId;
|
||||
|
||||
// Token: 0x0400055D RID: 1373
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400055D")]
|
||||
private string systemId;
|
||||
|
||||
// Token: 0x0400055E RID: 1374
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400055E")]
|
||||
private string name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user