Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

239 lines
9.8 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents an XML namespace. This class cannot be inherited.</summary>
// Token: 0x02000004 RID: 4
[Token(Token = "0x2000004")]
public sealed class XNamespace
{
// Token: 0x06000011 RID: 17 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000011")]
[Address(RVA = "0x11CC570", Offset = "0x11CB570", VA = "0x1811CC570")]
internal XNamespace(string namespaceName)
{
}
/// <summary>Gets the Uniform Resource Identifier (URI) of this namespace.</summary>
/// <returns>A <see cref="T:System.String" /> that contains the URI of the namespace.</returns>
// Token: 0x17000004 RID: 4
// (get) Token: 0x06000012 RID: 18 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000004")]
public string NamespaceName
{
[Token(Token = "0x6000012")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
/// <summary>Returns an <see cref="T:System.Xml.Linq.XName" /> object created from this <see cref="T:System.Xml.Linq.XNamespace" /> and the specified local name.</summary>
/// <param name="localName">A <see cref="T:System.String" /> that contains a local name.</param>
/// <returns>An <see cref="T:System.Xml.Linq.XName" /> created from this <see cref="T:System.Xml.Linq.XNamespace" /> and the specified local name.</returns>
// Token: 0x06000013 RID: 19 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000013")]
[Address(RVA = "0x11CC120", Offset = "0x11CB120", VA = "0x1811CC120")]
public XName GetName(string localName)
{
return null;
}
/// <summary>Returns the URI of this <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
/// <returns>The URI of this <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
// Token: 0x06000014 RID: 20 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000014")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to no namespace.</summary>
/// <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to no namespace.</returns>
// Token: 0x17000005 RID: 5
// (get) Token: 0x06000015 RID: 21 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000005")]
public static XNamespace None
{
[Token(Token = "0x6000015")]
[Address(RVA = "0x11CC640", Offset = "0x11CB640", VA = "0x1811CC640")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).</summary>
/// <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).</returns>
// Token: 0x17000006 RID: 6
// (get) Token: 0x06000016 RID: 22 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000006")]
public static XNamespace Xml
{
[Token(Token = "0x6000016")]
[Address(RVA = "0x11CC690", Offset = "0x11CB690", VA = "0x1811CC690")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).</summary>
/// <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).</returns>
// Token: 0x17000007 RID: 7
// (get) Token: 0x06000017 RID: 23 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000007")]
public static XNamespace Xmlns
{
[Token(Token = "0x6000017")]
[Address(RVA = "0x11CC6E0", Offset = "0x11CB6E0", VA = "0x1811CC6E0")]
get
{
return null;
}
}
/// <summary>Gets an <see cref="T:System.Xml.Linq.XNamespace" /> for the specified Uniform Resource Identifier (URI).</summary>
/// <param name="namespaceName">A <see cref="T:System.String" /> that contains a namespace URI.</param>
/// <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> created from the specified URI.</returns>
// Token: 0x06000018 RID: 24 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000018")]
[Address(RVA = "0x11CC1B0", Offset = "0x11CB1B0", VA = "0x1811CC1B0")]
public static XNamespace Get(string namespaceName)
{
return null;
}
/// <summary>Converts a string containing a Uniform Resource Identifier (URI) to an <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
/// <param name="namespaceName">A <see cref="T:System.String" /> that contains the namespace URI.</param>
/// <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> constructed from the URI string.</returns>
// Token: 0x06000019 RID: 25 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000019")]
[Address(RVA = "0x11CC730", Offset = "0x11CB730", VA = "0x1811CC730")]
[CLSCompliant(false)]
public static implicit operator XNamespace(string namespaceName)
{
return null;
}
/// <summary>Determines whether the specified <see cref="T:System.Xml.Linq.XNamespace" /> is equal to the current <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
/// <param name="obj">The <see cref="T:System.Xml.Linq.XNamespace" /> to compare to the current <see cref="T:System.Xml.Linq.XNamespace" />.</param>
/// <returns>A <see cref="T:System.Boolean" /> that indicates whether the specified <see cref="T:System.Xml.Linq.XNamespace" /> is equal to the current <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
// Token: 0x0600001A RID: 26 RVA: 0x000020B8 File Offset: 0x000002B8
[Token(Token = "0x600001A")]
[Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Gets a hash code for this <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
/// <returns>An <see cref="T:System.Int32" /> that contains the hash code for the <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
// Token: 0x0600001B RID: 27 RVA: 0x000020D0 File Offset: 0x000002D0
[Token(Token = "0x600001B")]
[Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XNamespace" /> are equal.</summary>
/// <param name="left">The first <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
/// <param name="right">The second <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
/// <returns>A <see cref="T:System.Boolean" /> that indicates whether <paramref name="left" /> and <paramref name="right" /> are equal.</returns>
// Token: 0x0600001C RID: 28 RVA: 0x000020E8 File Offset: 0x000002E8
[Token(Token = "0x600001C")]
[Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60")]
public static bool operator ==(XNamespace left, XNamespace right)
{
return default(bool);
}
/// <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XNamespace" /> are not equal.</summary>
/// <param name="left">The first <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
/// <param name="right">The second <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
/// <returns>A <see cref="T:System.Boolean" /> that indicates whether <paramref name="left" /> and <paramref name="right" /> are not equal.</returns>
// Token: 0x0600001D RID: 29 RVA: 0x00002100 File Offset: 0x00000300
[Token(Token = "0x600001D")]
[Address(RVA = "0x594EE0", Offset = "0x593EE0", VA = "0x180594EE0")]
public static bool operator !=(XNamespace left, XNamespace right)
{
return default(bool);
}
// Token: 0x0600001E RID: 30 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x600001E")]
[Address(RVA = "0x11CBFB0", Offset = "0x11CAFB0", VA = "0x1811CBFB0")]
internal XName GetName(string localName, int index, int count)
{
return null;
}
// Token: 0x0600001F RID: 31 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x600001F")]
[Address(RVA = "0x11CC220", Offset = "0x11CB220", VA = "0x1811CC220")]
internal static XNamespace Get(string namespaceName, int index, int count)
{
return null;
}
// Token: 0x06000020 RID: 32 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000020")]
[Address(RVA = "0xA40C50", Offset = "0xA3FC50", VA = "0x180A40C50")]
private static string ExtractLocalName(XName n)
{
return null;
}
// Token: 0x06000021 RID: 33 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000021")]
[Address(RVA = "0x11CBF30", Offset = "0x11CAF30", VA = "0x1811CBF30")]
private static string ExtractNamespace(WeakReference r)
{
return null;
}
// Token: 0x06000022 RID: 34 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000022")]
[Address(RVA = "0x11CBE40", Offset = "0x11CAE40", VA = "0x1811CBE40")]
private static XNamespace EnsureNamespace(ref WeakReference refNmsp, string namespaceName)
{
return null;
}
// Token: 0x04000005 RID: 5
[Token(Token = "0x4000005")]
private static XHashtable<WeakReference> namespaces;
// Token: 0x04000006 RID: 6
[Token(Token = "0x4000006")]
private static WeakReference refNone;
// Token: 0x04000007 RID: 7
[Token(Token = "0x4000007")]
private static WeakReference refXml;
// Token: 0x04000008 RID: 8
[Token(Token = "0x4000008")]
private static WeakReference refXmlns;
// Token: 0x04000009 RID: 9
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000009")]
private string namespaceName;
// Token: 0x0400000A RID: 10
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400000A")]
private int hashCode;
// Token: 0x0400000B RID: 11
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400000B")]
private XHashtable<XName> names;
}
}