Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

206 lines
8.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents an XML qualified name.</summary>
// Token: 0x02000080 RID: 128
[Token(Token = "0x2000080")]
[Serializable]
public class XmlQualifiedName
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class.</summary>
// Token: 0x06000539 RID: 1337 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000539")]
[Address(RVA = "0x5E0770", Offset = "0x5DF570", VA = "0x1805E0770")]
public XmlQualifiedName()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class with the specified name.</summary>
/// <param name="name">The local name to use as the name of the <see cref="T:System.Xml.XmlQualifiedName" /> object. </param>
// Token: 0x0600053A RID: 1338 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600053A")]
[Address(RVA = "0x5E06B0", Offset = "0x5DF4B0", VA = "0x1805E06B0")]
public XmlQualifiedName(string name)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class with the specified name and namespace.</summary>
/// <param name="name">The local name to use as the name of the <see cref="T:System.Xml.XmlQualifiedName" /> object. </param>
/// <param name="ns">The namespace for the <see cref="T:System.Xml.XmlQualifiedName" /> object. </param>
// Token: 0x0600053B RID: 1339 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600053B")]
[Address(RVA = "0x5E0620", Offset = "0x5DF420", VA = "0x1805E0620")]
public XmlQualifiedName(string name, string ns)
{
}
/// <summary>Gets a string representation of the namespace of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
/// <returns>A string representation of the namespace or String.Empty if a namespace is not defined for the object.</returns>
// Token: 0x170001B9 RID: 441
// (get) Token: 0x0600053C RID: 1340 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001B9")]
public string Namespace
{
[Token(Token = "0x600053C")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Gets a string representation of the qualified name of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
/// <returns>A string representation of the qualified name or String.Empty if a name is not defined for the object.</returns>
// Token: 0x170001BA RID: 442
// (get) Token: 0x0600053D RID: 1341 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170001BA")]
public string Name
{
[Token(Token = "0x600053D")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Returns the hash code for the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
/// <returns>A hash code for this object.</returns>
// Token: 0x0600053E RID: 1342 RVA: 0x00004188 File Offset: 0x00002388
[Token(Token = "0x600053E")]
[Address(RVA = "0x5E0110", Offset = "0x5DEF10", VA = "0x1805E0110", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlQualifiedName" /> is empty.</summary>
/// <returns>
/// <see langword="true" /> if name and namespace are empty strings; otherwise, <see langword="false" />.</returns>
// Token: 0x170001BB RID: 443
// (get) Token: 0x0600053F RID: 1343 RVA: 0x000041A0 File Offset: 0x000023A0
[Token(Token = "0x170001BB")]
public bool IsEmpty
{
[Token(Token = "0x600053F")]
[Address(RVA = "0x5E0820", Offset = "0x5DF620", VA = "0x1805E0820")]
get
{
return default(bool);
}
}
/// <summary>Returns the string value of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
/// <returns>The string value of the <see cref="T:System.Xml.XmlQualifiedName" /> in the format of <see langword="namespace:localname" />. If the object does not have a namespace defined, this method returns just the local name.</returns>
// Token: 0x06000540 RID: 1344 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000540")]
[Address(RVA = "0x5E0530", Offset = "0x5DF330", VA = "0x1805E0530", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>Determines whether the specified <see cref="T:System.Xml.XmlQualifiedName" /> object is equal to the current <see cref="T:System.Xml.XmlQualifiedName" /> object. </summary>
/// <param name="other">The <see cref="T:System.Xml.XmlQualifiedName" /> to compare. </param>
/// <returns>
/// <see langword="true" /> if the two are the same instance object; otherwise, <see langword="false" />.</returns>
// Token: 0x06000541 RID: 1345 RVA: 0x000041B8 File Offset: 0x000023B8
[Token(Token = "0x6000541")]
[Address(RVA = "0x5DFE60", Offset = "0x5DEC60", VA = "0x1805DFE60", Slot = "0")]
public override bool Equals(object other)
{
return default(bool);
}
/// <summary>Compares two <see cref="T:System.Xml.XmlQualifiedName" /> objects.</summary>
/// <param name="a">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare. </param>
/// <param name="b">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare. </param>
/// <returns>
/// <see langword="true" /> if the two objects have the same name and namespace values; otherwise, <see langword="false" />.</returns>
// Token: 0x06000542 RID: 1346 RVA: 0x000041D0 File Offset: 0x000023D0
[Token(Token = "0x6000542")]
[Address(RVA = "0x5E0860", Offset = "0x5DF660", VA = "0x1805E0860")]
public static bool operator ==(XmlQualifiedName a, XmlQualifiedName b)
{
return default(bool);
}
/// <summary>Compares two <see cref="T:System.Xml.XmlQualifiedName" /> objects.</summary>
/// <param name="a">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare. </param>
/// <param name="b">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare. </param>
/// <returns>
/// <see langword="true" /> if the name and namespace values for the two objects differ; otherwise, <see langword="false" />.</returns>
// Token: 0x06000543 RID: 1347 RVA: 0x000041E8 File Offset: 0x000023E8
[Token(Token = "0x6000543")]
[Address(RVA = "0x5E08D0", Offset = "0x5DF6D0", VA = "0x1805E08D0")]
public static bool operator !=(XmlQualifiedName a, XmlQualifiedName b)
{
return default(bool);
}
// Token: 0x06000544 RID: 1348 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000544")]
[Address(RVA = "0x5DFF90", Offset = "0x5DED90", VA = "0x1805DFF90")]
private static XmlQualifiedName.HashCodeOfStringDelegate GetHashCodeDelegate()
{
return null;
}
// Token: 0x06000545 RID: 1349 RVA: 0x00004200 File Offset: 0x00002400
[Token(Token = "0x6000545")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930")]
private static bool IsRandomizedHashingDisabled()
{
return default(bool);
}
// Token: 0x06000546 RID: 1350 RVA: 0x00004218 File Offset: 0x00002418
[Token(Token = "0x6000546")]
[Address(RVA = "0x5E00E0", Offset = "0x5DEEE0", VA = "0x1805E00E0")]
private static int GetHashCodeOfString(string s, int length, long additionalEntropy)
{
return 0;
}
// Token: 0x06000547 RID: 1351 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000547")]
[Address(RVA = "0x5E0350", Offset = "0x5DF150", VA = "0x1805E0350")]
internal static XmlQualifiedName Parse(string s, IXmlNamespaceResolver nsmgr, out string prefix)
{
return null;
}
// Token: 0x04000281 RID: 641
[Token(Token = "0x4000281")]
private static XmlQualifiedName.HashCodeOfStringDelegate hashCodeDelegate;
// Token: 0x04000282 RID: 642
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000282")]
private string name;
// Token: 0x04000283 RID: 643
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000283")]
private string ns;
// Token: 0x04000284 RID: 644
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000284")]
[NonSerialized]
private int hash;
/// <summary>Provides an empty <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
// Token: 0x04000285 RID: 645
[Token(Token = "0x4000285")]
public static readonly XmlQualifiedName Empty;
// Token: 0x02000081 RID: 129
// (Invoke) Token: 0x0600054A RID: 1354
[Token(Token = "0x2000081")]
private delegate int HashCodeOfStringDelegate(string s, int sLen, long additionalEntropy);
}
}