m
This commit is contained in:
@@ -0,0 +1,253 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml
|
||||
{
|
||||
/// <summary>Represents an XML qualified name.</summary>
|
||||
// Token: 0x020000F8 RID: 248
|
||||
[Token(Token = "0x20000F8")]
|
||||
[Serializable]
|
||||
public class XmlQualifiedName
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class.</summary>
|
||||
// Token: 0x06000C09 RID: 3081 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C09")]
|
||||
[Address(RVA = "0x4B3C50", Offset = "0x4B2C50", VA = "0x1804B3C50")]
|
||||
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: 0x06000C0A RID: 3082 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C0A")]
|
||||
[Address(RVA = "0x4B3B90", Offset = "0x4B2B90", VA = "0x1804B3B90")]
|
||||
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: 0x06000C0B RID: 3083 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C0B")]
|
||||
[Address(RVA = "0x4B3B00", Offset = "0x4B2B00", VA = "0x1804B3B00")]
|
||||
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: 0x17000329 RID: 809
|
||||
// (get) Token: 0x06000C0C RID: 3084 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000329")]
|
||||
public string Namespace
|
||||
{
|
||||
[Token(Token = "0x6000C0C")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
|
||||
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: 0x1700032A RID: 810
|
||||
// (get) Token: 0x06000C0D RID: 3085 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700032A")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x6000C0D")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
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: 0x06000C0E RID: 3086 RVA: 0x00006810 File Offset: 0x00004A10
|
||||
[Token(Token = "0x6000C0E")]
|
||||
[Address(RVA = "0x4B3530", Offset = "0x4B2530", VA = "0x1804B3530", 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: 0x1700032B RID: 811
|
||||
// (get) Token: 0x06000C0F RID: 3087 RVA: 0x00006828 File Offset: 0x00004A28
|
||||
[Token(Token = "0x1700032B")]
|
||||
public bool IsEmpty
|
||||
{
|
||||
[Token(Token = "0x6000C0F")]
|
||||
[Address(RVA = "0x4B3D00", Offset = "0x4B2D00", VA = "0x1804B3D00")]
|
||||
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: 0x06000C10 RID: 3088 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C10")]
|
||||
[Address(RVA = "0x4B3970", Offset = "0x4B2970", VA = "0x1804B3970", 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: 0x06000C11 RID: 3089 RVA: 0x00006840 File Offset: 0x00004A40
|
||||
[Token(Token = "0x6000C11")]
|
||||
[Address(RVA = "0x4B3280", Offset = "0x4B2280", VA = "0x1804B3280", 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: 0x06000C12 RID: 3090 RVA: 0x00006858 File Offset: 0x00004A58
|
||||
[Token(Token = "0x6000C12")]
|
||||
[Address(RVA = "0x4B3D40", Offset = "0x4B2D40", VA = "0x1804B3D40")]
|
||||
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: 0x06000C13 RID: 3091 RVA: 0x00006870 File Offset: 0x00004A70
|
||||
[Token(Token = "0x6000C13")]
|
||||
[Address(RVA = "0x4B3DB0", Offset = "0x4B2DB0", VA = "0x1804B3DB0")]
|
||||
public static bool operator !=(XmlQualifiedName a, XmlQualifiedName b)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Returns the string value of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
|
||||
/// <param name="name">The name of the object. </param>
|
||||
/// <param name="ns">The namespace of the object. </param>
|
||||
/// <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: 0x06000C14 RID: 3092 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C14")]
|
||||
[Address(RVA = "0x4B3900", Offset = "0x4B2900", VA = "0x1804B3900")]
|
||||
public static string ToString(string name, string ns)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C15 RID: 3093 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C15")]
|
||||
[Address(RVA = "0x4B33B0", Offset = "0x4B23B0", VA = "0x1804B33B0")]
|
||||
private static XmlQualifiedName.HashCodeOfStringDelegate GetHashCodeDelegate()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C16 RID: 3094 RVA: 0x00006888 File Offset: 0x00004A88
|
||||
[Token(Token = "0x6000C16")]
|
||||
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690")]
|
||||
private static bool IsRandomizedHashingDisabled()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x06000C17 RID: 3095 RVA: 0x000068A0 File Offset: 0x00004AA0
|
||||
[Token(Token = "0x6000C17")]
|
||||
[Address(RVA = "0x4B3500", Offset = "0x4B2500", VA = "0x1804B3500")]
|
||||
private static int GetHashCodeOfString(string s, int length, long additionalEntropy)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Token: 0x06000C18 RID: 3096 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C18")]
|
||||
[Address(RVA = "0x4B3770", Offset = "0x4B2770", VA = "0x1804B3770")]
|
||||
internal void Init(string name, string ns)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000C19 RID: 3097 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C19")]
|
||||
[Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0")]
|
||||
internal void SetNamespace(string ns)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000C1A RID: 3098 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C1A")]
|
||||
[Address(RVA = "0x4B39D0", Offset = "0x4B29D0", VA = "0x1804B39D0")]
|
||||
internal void Verify()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000C1B RID: 3099 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C1B")]
|
||||
[Address(RVA = "0x4B3190", Offset = "0x4B2190", VA = "0x1804B3190")]
|
||||
internal void Atomize(XmlNameTable nameTable)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06000C1C RID: 3100 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C1C")]
|
||||
[Address(RVA = "0x4B3780", Offset = "0x4B2780", VA = "0x1804B3780")]
|
||||
internal static XmlQualifiedName Parse(string s, IXmlNamespaceResolver nsmgr, out string prefix)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000C1D RID: 3101 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000C1D")]
|
||||
[Address(RVA = "0x4B31F0", Offset = "0x4B21F0", VA = "0x1804B31F0")]
|
||||
internal XmlQualifiedName Clone()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x0400064F RID: 1615
|
||||
[Token(Token = "0x400064F")]
|
||||
private static XmlQualifiedName.HashCodeOfStringDelegate hashCodeDelegate;
|
||||
|
||||
// Token: 0x04000650 RID: 1616
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000650")]
|
||||
private string name;
|
||||
|
||||
// Token: 0x04000651 RID: 1617
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4000651")]
|
||||
private string ns;
|
||||
|
||||
// Token: 0x04000652 RID: 1618
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4000652")]
|
||||
[NonSerialized]
|
||||
private int hash;
|
||||
|
||||
/// <summary>Provides an empty <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
|
||||
// Token: 0x04000653 RID: 1619
|
||||
[Token(Token = "0x4000653")]
|
||||
public static readonly XmlQualifiedName Empty;
|
||||
|
||||
// Token: 0x020000F9 RID: 249
|
||||
// (Invoke) Token: 0x06000C20 RID: 3104
|
||||
[Token(Token = "0x20000F9")]
|
||||
private delegate int HashCodeOfStringDelegate(string s, int sLen, long additionalEntropy);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user