1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(258))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Xml.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Xml.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.30319.17020")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.30319.17020")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Xml.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute((System.Runtime.CompilerServices.CompilationRelaxations)(8))]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Data.SqlXml, PublicKey=00000000000000000400000000000000")]
20 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Runtime.Serialization, PublicKey=00000000000000000400000000000000", AllInternalsVisible=false)]
21 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ServiceModel.Friend, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
22 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Xml.Linq, PublicKey=00000000000000000400000000000000")]
23 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Xml.Linq, PublicKey=00000000000000000400000000000000", AllInternalsVisible=false)]
24 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
25 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
26 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
27 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
28 [assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
29 namespace System.Xml
30 {
31     public enum ConformanceLevel
32     {
33         Auto = 0,
34         Document = 2,
35         Fragment = 1,
36     }
37     public enum DtdProcessing
38     {
39         Ignore = 1,
40         Parse = 2,
41         Prohibit = 0,
42     }
43     public enum EntityHandling
44     {
45         ExpandCharEntities = 2,
46         ExpandEntities = 1,
47     }
48     public enum Formatting
49     {
50         Indented = 1,
51         None = 0,
52     }
53     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
54     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
55     public partial interface IApplicationResourceStreamResolver
56     {
57         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
58         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
GetApplicationResourceStream(System.Uri relativeUri)59         System.IO.Stream GetApplicationResourceStream(System.Uri relativeUri);
60     }
61     public partial interface IHasXmlNode
62     {
GetNode()63         System.Xml.XmlNode GetNode();
64     }
65     public partial interface IXmlLineInfo
66     {
67         int LineNumber { get; }
68         int LinePosition { get; }
HasLineInfo()69         bool HasLineInfo();
70     }
71     public partial interface IXmlNamespaceResolver
72     {
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)73         System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope);
LookupNamespace(string prefix)74         string LookupNamespace(string prefix);
LookupPrefix(string namespaceName)75         string LookupPrefix(string namespaceName);
76     }
77     [System.FlagsAttribute]
78     public enum NamespaceHandling
79     {
80         Default = 0,
81         OmitDuplicates = 1,
82     }
83     public partial class NameTable : System.Xml.XmlNameTable
84     {
NameTable()85         public NameTable() { }
Add(char[] key, int start, int len)86         public override string Add(char[] key, int start, int len) { throw null; }
Add(string key)87         public override string Add(string key) { throw null; }
Get(char[] key, int start, int len)88         public override string Get(char[] key, int start, int len) { throw null; }
Get(string value)89         public override string Get(string value) { throw null; }
90     }
91     public enum NewLineHandling
92     {
93         Entitize = 1,
94         None = 2,
95         Replace = 0,
96     }
97     public enum ReadState
98     {
99         Closed = 4,
100         EndOfFile = 3,
101         Error = 2,
102         Initial = 0,
103         Interactive = 1,
104     }
105     public enum ValidationType
106     {
107         [System.ObsoleteAttribute("Validation type should be specified as DTD or Schema.")]
108         Auto = 1,
109         DTD = 2,
110         None = 0,
111         Schema = 4,
112         [System.ObsoleteAttribute("XDR Validation through XmlValidatingReader is obsoleted")]
113         XDR = 3,
114     }
115     public enum WhitespaceHandling
116     {
117         All = 0,
118         None = 2,
119         Significant = 1,
120     }
121     public enum WriteState
122     {
123         Attribute = 3,
124         Closed = 5,
125         Content = 4,
126         Element = 2,
127         Error = 6,
128         Prolog = 1,
129         Start = 0,
130     }
131     public partial class XmlAttribute : System.Xml.XmlNode
132     {
XmlAttribute(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc)133         protected internal XmlAttribute(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc) { }
134         public override string BaseURI { get { throw null; } }
135         public override string InnerText { set { } }
136         public override string InnerXml { set { } }
137         public override string LocalName { get { throw null; } }
138         public override string Name { get { throw null; } }
139         public override string NamespaceURI { get { throw null; } }
140         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
141         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
142         public virtual System.Xml.XmlElement OwnerElement { get { throw null; } }
143         public override System.Xml.XmlNode ParentNode { get { throw null; } }
144         public override string Prefix { get { throw null; } set { } }
145         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
146         public virtual bool Specified { get { throw null; } }
147         public override string Value { get { throw null; } set { } }
AppendChild(System.Xml.XmlNode newChild)148         public override System.Xml.XmlNode AppendChild(System.Xml.XmlNode newChild) { throw null; }
CloneNode(bool deep)149         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)150         public override System.Xml.XmlNode InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)151         public override System.Xml.XmlNode InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
PrependChild(System.Xml.XmlNode newChild)152         public override System.Xml.XmlNode PrependChild(System.Xml.XmlNode newChild) { throw null; }
RemoveChild(System.Xml.XmlNode oldChild)153         public override System.Xml.XmlNode RemoveChild(System.Xml.XmlNode oldChild) { throw null; }
ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild)154         public override System.Xml.XmlNode ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)155         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)156         public override void WriteTo(System.Xml.XmlWriter w) { }
157     }
158     public sealed partial class XmlAttributeCollection : System.Xml.XmlNamedNodeMap, System.Collections.ICollection, System.Collections.IEnumerable
159     {
XmlAttributeCollection()160         internal XmlAttributeCollection() { }
161         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
162         public System.Xml.XmlAttribute this[int i] { get { throw null; } }
163         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
164         public System.Xml.XmlAttribute this[string name] { get { throw null; } }
165         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
166         public System.Xml.XmlAttribute this[string localName, string namespaceURI] { get { throw null; } }
167         int System.Collections.ICollection.Count { get { throw null; } }
168         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
169         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Append(System.Xml.XmlAttribute node)170         public System.Xml.XmlAttribute Append(System.Xml.XmlAttribute node) { throw null; }
CopyTo(System.Xml.XmlAttribute[] array, int index)171         public void CopyTo(System.Xml.XmlAttribute[] array, int index) { }
InsertAfter(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode)172         public System.Xml.XmlAttribute InsertAfter(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode) { throw null; }
InsertBefore(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode)173         public System.Xml.XmlAttribute InsertBefore(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode) { throw null; }
Prepend(System.Xml.XmlAttribute node)174         public System.Xml.XmlAttribute Prepend(System.Xml.XmlAttribute node) { throw null; }
Remove(System.Xml.XmlAttribute node)175         public System.Xml.XmlAttribute Remove(System.Xml.XmlAttribute node) { throw null; }
RemoveAll()176         public void RemoveAll() { }
RemoveAt(int i)177         public System.Xml.XmlAttribute RemoveAt(int i) { throw null; }
SetNamedItem(System.Xml.XmlNode node)178         public override System.Xml.XmlNode SetNamedItem(System.Xml.XmlNode node) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)179         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
180     }
181     public partial class XmlCDataSection : System.Xml.XmlCharacterData
182     {
XmlCDataSection(string data, System.Xml.XmlDocument doc)183         protected internal XmlCDataSection(string data, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
184         public override string LocalName { get { throw null; } }
185         public override string Name { get { throw null; } }
186         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
187         public override System.Xml.XmlNode ParentNode { get { throw null; } }
CloneNode(bool deep)188         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)189         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)190         public override void WriteTo(System.Xml.XmlWriter w) { }
191     }
192     public abstract partial class XmlCharacterData : System.Xml.XmlLinkedNode
193     {
XmlCharacterData(string data, System.Xml.XmlDocument doc)194         protected internal XmlCharacterData(string data, System.Xml.XmlDocument doc) { }
195         public virtual string Data { get { throw null; } set { } }
196         public override string InnerText { get { throw null; } set { } }
197         public virtual int Length { get { throw null; } }
198         public override string Value { get { throw null; } set { } }
AppendData(string strData)199         public virtual void AppendData(string strData) { }
DeleteData(int offset, int count)200         public virtual void DeleteData(int offset, int count) { }
InsertData(int offset, string strData)201         public virtual void InsertData(int offset, string strData) { }
ReplaceData(int offset, int count, string strData)202         public virtual void ReplaceData(int offset, int count, string strData) { }
Substring(int offset, int count)203         public virtual string Substring(int offset, int count) { throw null; }
204     }
205     public partial class XmlComment : System.Xml.XmlCharacterData
206     {
XmlComment(string comment, System.Xml.XmlDocument doc)207         protected internal XmlComment(string comment, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
208         public override string LocalName { get { throw null; } }
209         public override string Name { get { throw null; } }
210         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
CloneNode(bool deep)211         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)212         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)213         public override void WriteTo(System.Xml.XmlWriter w) { }
214     }
215     public partial class XmlConvert
216     {
XmlConvert()217         public XmlConvert() { }
DecodeName(string name)218         public static string DecodeName(string name) { throw null; }
EncodeLocalName(string name)219         public static string EncodeLocalName(string name) { throw null; }
EncodeName(string name)220         public static string EncodeName(string name) { throw null; }
EncodeNmToken(string name)221         public static string EncodeNmToken(string name) { throw null; }
IsNCNameChar(char ch)222         public static bool IsNCNameChar(char ch) { throw null; }
IsPublicIdChar(char ch)223         public static bool IsPublicIdChar(char ch) { throw null; }
IsStartNCNameChar(char ch)224         public static bool IsStartNCNameChar(char ch) { throw null; }
IsWhitespaceChar(char ch)225         public static bool IsWhitespaceChar(char ch) { throw null; }
IsXmlChar(char ch)226         public static bool IsXmlChar(char ch) { throw null; }
IsXmlSurrogatePair(char lowChar, char highChar)227         public static bool IsXmlSurrogatePair(char lowChar, char highChar) { throw null; }
ToBoolean(string s)228         public static bool ToBoolean(string s) { throw null; }
ToByte(string s)229         public static byte ToByte(string s) { throw null; }
ToChar(string s)230         public static char ToChar(string s) { throw null; }
231         [System.ObsoleteAttribute("Use XmlConvert.ToDateTime() that takes in XmlDateTimeSerializationMode")]
ToDateTime(string s)232         public static System.DateTime ToDateTime(string s) { throw null; }
ToDateTime(string s, string format)233         public static System.DateTime ToDateTime(string s, string format) { throw null; }
ToDateTime(string s, string[] formats)234         public static System.DateTime ToDateTime(string s, string[] formats) { throw null; }
ToDateTime(string s, System.Xml.XmlDateTimeSerializationMode dateTimeOption)235         public static System.DateTime ToDateTime(string s, System.Xml.XmlDateTimeSerializationMode dateTimeOption) { throw null; }
ToDateTimeOffset(string s)236         public static System.DateTimeOffset ToDateTimeOffset(string s) { throw null; }
ToDateTimeOffset(string s, string format)237         public static System.DateTimeOffset ToDateTimeOffset(string s, string format) { throw null; }
ToDateTimeOffset(string s, string[] formats)238         public static System.DateTimeOffset ToDateTimeOffset(string s, string[] formats) { throw null; }
ToDecimal(string s)239         public static decimal ToDecimal(string s) { throw null; }
ToDouble(string s)240         public static double ToDouble(string s) { throw null; }
ToGuid(string s)241         public static System.Guid ToGuid(string s) { throw null; }
ToInt16(string s)242         public static short ToInt16(string s) { throw null; }
ToInt32(string s)243         public static int ToInt32(string s) { throw null; }
ToInt64(string s)244         public static long ToInt64(string s) { throw null; }
245         [System.CLSCompliantAttribute(false)]
ToSByte(string s)246         public static sbyte ToSByte(string s) { throw null; }
ToSingle(string s)247         public static float ToSingle(string s) { throw null; }
ToString(bool value)248         public static string ToString(bool value) { throw null; }
ToString(byte value)249         public static string ToString(byte value) { throw null; }
ToString(char value)250         public static string ToString(char value) { throw null; }
251         [System.ObsoleteAttribute("Use XmlConvert.ToString() that takes in XmlDateTimeSerializationMode")]
ToString(System.DateTime value)252         public static string ToString(System.DateTime value) { throw null; }
ToString(System.DateTime value, string format)253         public static string ToString(System.DateTime value, string format) { throw null; }
ToString(System.DateTime value, System.Xml.XmlDateTimeSerializationMode dateTimeOption)254         public static string ToString(System.DateTime value, System.Xml.XmlDateTimeSerializationMode dateTimeOption) { throw null; }
ToString(System.DateTimeOffset value)255         public static string ToString(System.DateTimeOffset value) { throw null; }
ToString(System.DateTimeOffset value, string format)256         public static string ToString(System.DateTimeOffset value, string format) { throw null; }
ToString(decimal value)257         public static string ToString(decimal value) { throw null; }
ToString(double value)258         public static string ToString(double value) { throw null; }
ToString(System.Guid value)259         public static string ToString(System.Guid value) { throw null; }
ToString(short value)260         public static string ToString(short value) { throw null; }
ToString(int value)261         public static string ToString(int value) { throw null; }
ToString(long value)262         public static string ToString(long value) { throw null; }
263         [System.CLSCompliantAttribute(false)]
ToString(sbyte value)264         public static string ToString(sbyte value) { throw null; }
ToString(float value)265         public static string ToString(float value) { throw null; }
ToString(System.TimeSpan value)266         public static string ToString(System.TimeSpan value) { throw null; }
267         [System.CLSCompliantAttribute(false)]
ToString(ushort value)268         public static string ToString(ushort value) { throw null; }
269         [System.CLSCompliantAttribute(false)]
ToString(uint value)270         public static string ToString(uint value) { throw null; }
271         [System.CLSCompliantAttribute(false)]
ToString(ulong value)272         public static string ToString(ulong value) { throw null; }
ToTimeSpan(string s)273         public static System.TimeSpan ToTimeSpan(string s) { throw null; }
274         [System.CLSCompliantAttribute(false)]
ToUInt16(string s)275         public static ushort ToUInt16(string s) { throw null; }
276         [System.CLSCompliantAttribute(false)]
ToUInt32(string s)277         public static uint ToUInt32(string s) { throw null; }
278         [System.CLSCompliantAttribute(false)]
ToUInt64(string s)279         public static ulong ToUInt64(string s) { throw null; }
VerifyName(string name)280         public static string VerifyName(string name) { throw null; }
VerifyNCName(string name)281         public static string VerifyNCName(string name) { throw null; }
VerifyNMTOKEN(string name)282         public static string VerifyNMTOKEN(string name) { throw null; }
VerifyPublicId(string publicId)283         public static string VerifyPublicId(string publicId) { throw null; }
VerifyTOKEN(string token)284         public static string VerifyTOKEN(string token) { throw null; }
VerifyWhitespace(string content)285         public static string VerifyWhitespace(string content) { throw null; }
VerifyXmlChars(string content)286         public static string VerifyXmlChars(string content) { throw null; }
287     }
288     public enum XmlDateTimeSerializationMode
289     {
290         Local = 0,
291         RoundtripKind = 3,
292         Unspecified = 2,
293         Utc = 1,
294     }
295     public partial class XmlDeclaration : System.Xml.XmlLinkedNode
296     {
XmlDeclaration(string version, string encoding, string standalone, System.Xml.XmlDocument doc)297         protected internal XmlDeclaration(string version, string encoding, string standalone, System.Xml.XmlDocument doc) { }
298         public string Encoding { get { throw null; } set { } }
299         public override string InnerText { get { throw null; } set { } }
300         public override string LocalName { get { throw null; } }
301         public override string Name { get { throw null; } }
302         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
303         public string Standalone { get { throw null; } set { } }
304         public override string Value { get { throw null; } set { } }
305         public string Version { get { throw null; } }
CloneNode(bool deep)306         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)307         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)308         public override void WriteTo(System.Xml.XmlWriter w) { }
309     }
310     public partial class XmlDocument : System.Xml.XmlNode
311     {
XmlDocument()312         public XmlDocument() { }
XmlDocument(System.Xml.XmlImplementation imp)313         protected internal XmlDocument(System.Xml.XmlImplementation imp) { }
XmlDocument(System.Xml.XmlNameTable nt)314         public XmlDocument(System.Xml.XmlNameTable nt) { }
315         public override string BaseURI { get { throw null; } }
316         public System.Xml.XmlElement DocumentElement { get { throw null; } }
317         public virtual System.Xml.XmlDocumentType DocumentType { get { throw null; } }
318         public System.Xml.XmlImplementation Implementation { get { throw null; } }
319         public override string InnerText { set { } }
320         public override string InnerXml { get { throw null; } set { } }
321         public override bool IsReadOnly { get { throw null; } }
322         public override string LocalName { get { throw null; } }
323         public override string Name { get { throw null; } }
324         public System.Xml.XmlNameTable NameTable { get { throw null; } }
325         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
326         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
327         public override System.Xml.XmlNode ParentNode { get { throw null; } }
328         public bool PreserveWhitespace { get { throw null; } set { } }
329         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
330         public System.Xml.Schema.XmlSchemaSet Schemas { get { throw null; } set { } }
331         public virtual System.Xml.XmlResolver XmlResolver { set { } }
332         public event System.Xml.XmlNodeChangedEventHandler NodeChanged { add { } remove { } }
333         public event System.Xml.XmlNodeChangedEventHandler NodeChanging { add { } remove { } }
334         public event System.Xml.XmlNodeChangedEventHandler NodeInserted { add { } remove { } }
335         public event System.Xml.XmlNodeChangedEventHandler NodeInserting { add { } remove { } }
336         public event System.Xml.XmlNodeChangedEventHandler NodeRemoved { add { } remove { } }
337         public event System.Xml.XmlNodeChangedEventHandler NodeRemoving { add { } remove { } }
CloneNode(bool deep)338         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
CreateAttribute(string name)339         public System.Xml.XmlAttribute CreateAttribute(string name) { throw null; }
CreateAttribute(string qualifiedName, string namespaceURI)340         public System.Xml.XmlAttribute CreateAttribute(string qualifiedName, string namespaceURI) { throw null; }
CreateAttribute(string prefix, string localName, string namespaceURI)341         public virtual System.Xml.XmlAttribute CreateAttribute(string prefix, string localName, string namespaceURI) { throw null; }
CreateCDataSection(string data)342         public virtual System.Xml.XmlCDataSection CreateCDataSection(string data) { throw null; }
CreateComment(string data)343         public virtual System.Xml.XmlComment CreateComment(string data) { throw null; }
CreateDefaultAttribute(string prefix, string localName, string namespaceURI)344         protected internal virtual System.Xml.XmlAttribute CreateDefaultAttribute(string prefix, string localName, string namespaceURI) { throw null; }
CreateDocumentFragment()345         public virtual System.Xml.XmlDocumentFragment CreateDocumentFragment() { throw null; }
346         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
CreateDocumentType(string name, string publicId, string systemId, string internalSubset)347         public virtual System.Xml.XmlDocumentType CreateDocumentType(string name, string publicId, string systemId, string internalSubset) { throw null; }
CreateElement(string name)348         public System.Xml.XmlElement CreateElement(string name) { throw null; }
CreateElement(string qualifiedName, string namespaceURI)349         public System.Xml.XmlElement CreateElement(string qualifiedName, string namespaceURI) { throw null; }
CreateElement(string prefix, string localName, string namespaceURI)350         public virtual System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI) { throw null; }
CreateEntityReference(string name)351         public virtual System.Xml.XmlEntityReference CreateEntityReference(string name) { throw null; }
CreateNavigator()352         public override System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
CreateNavigator(System.Xml.XmlNode node)353         protected internal virtual System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlNode node) { throw null; }
CreateNode(string nodeTypeString, string name, string namespaceURI)354         public virtual System.Xml.XmlNode CreateNode(string nodeTypeString, string name, string namespaceURI) { throw null; }
CreateNode(System.Xml.XmlNodeType type, string name, string namespaceURI)355         public virtual System.Xml.XmlNode CreateNode(System.Xml.XmlNodeType type, string name, string namespaceURI) { throw null; }
CreateNode(System.Xml.XmlNodeType type, string prefix, string name, string namespaceURI)356         public virtual System.Xml.XmlNode CreateNode(System.Xml.XmlNodeType type, string prefix, string name, string namespaceURI) { throw null; }
CreateProcessingInstruction(string target, string data)357         public virtual System.Xml.XmlProcessingInstruction CreateProcessingInstruction(string target, string data) { throw null; }
CreateSignificantWhitespace(string text)358         public virtual System.Xml.XmlSignificantWhitespace CreateSignificantWhitespace(string text) { throw null; }
CreateTextNode(string text)359         public virtual System.Xml.XmlText CreateTextNode(string text) { throw null; }
CreateWhitespace(string text)360         public virtual System.Xml.XmlWhitespace CreateWhitespace(string text) { throw null; }
CreateXmlDeclaration(string version, string encoding, string standalone)361         public virtual System.Xml.XmlDeclaration CreateXmlDeclaration(string version, string encoding, string standalone) { throw null; }
GetElementById(string elementId)362         public virtual System.Xml.XmlElement GetElementById(string elementId) { throw null; }
GetElementsByTagName(string name)363         public virtual System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetElementsByTagName(string localName, string namespaceURI)364         public virtual System.Xml.XmlNodeList GetElementsByTagName(string localName, string namespaceURI) { throw null; }
ImportNode(System.Xml.XmlNode node, bool deep)365         public virtual System.Xml.XmlNode ImportNode(System.Xml.XmlNode node, bool deep) { throw null; }
Load(System.IO.Stream inStream)366         public virtual void Load(System.IO.Stream inStream) { }
Load(System.IO.TextReader txtReader)367         public virtual void Load(System.IO.TextReader txtReader) { }
Load(string filename)368         public virtual void Load(string filename) { }
Load(System.Xml.XmlReader reader)369         public virtual void Load(System.Xml.XmlReader reader) { }
LoadXml(string xml)370         public virtual void LoadXml(string xml) { }
371         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
ReadNode(System.Xml.XmlReader reader)372         public virtual System.Xml.XmlNode ReadNode(System.Xml.XmlReader reader) { throw null; }
Save(System.IO.Stream outStream)373         public virtual void Save(System.IO.Stream outStream) { }
Save(System.IO.TextWriter writer)374         public virtual void Save(System.IO.TextWriter writer) { }
Save(string filename)375         public virtual void Save(string filename) { }
Save(System.Xml.XmlWriter w)376         public virtual void Save(System.Xml.XmlWriter w) { }
Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler)377         public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler) { }
Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlNode nodeToValidate)378         public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlNode nodeToValidate) { }
WriteContentTo(System.Xml.XmlWriter xw)379         public override void WriteContentTo(System.Xml.XmlWriter xw) { }
WriteTo(System.Xml.XmlWriter w)380         public override void WriteTo(System.Xml.XmlWriter w) { }
381     }
382     public partial class XmlDocumentFragment : System.Xml.XmlNode
383     {
XmlDocumentFragment(System.Xml.XmlDocument ownerDocument)384         protected internal XmlDocumentFragment(System.Xml.XmlDocument ownerDocument) { }
385         public override string InnerXml { get { throw null; } set { } }
386         public override string LocalName { get { throw null; } }
387         public override string Name { get { throw null; } }
388         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
389         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
390         public override System.Xml.XmlNode ParentNode { get { throw null; } }
CloneNode(bool deep)391         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)392         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)393         public override void WriteTo(System.Xml.XmlWriter w) { }
394     }
395     public partial class XmlDocumentType : System.Xml.XmlLinkedNode
396     {
XmlDocumentType(string name, string publicId, string systemId, string internalSubset, System.Xml.XmlDocument doc)397         protected internal XmlDocumentType(string name, string publicId, string systemId, string internalSubset, System.Xml.XmlDocument doc) { }
398         public System.Xml.XmlNamedNodeMap Entities { get { throw null; } }
399         public string InternalSubset { get { throw null; } }
400         public override bool IsReadOnly { get { throw null; } }
401         public override string LocalName { get { throw null; } }
402         public override string Name { get { throw null; } }
403         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
404         public System.Xml.XmlNamedNodeMap Notations { get { throw null; } }
405         public string PublicId { get { throw null; } }
406         public string SystemId { get { throw null; } }
CloneNode(bool deep)407         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)408         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)409         public override void WriteTo(System.Xml.XmlWriter w) { }
410     }
411     public partial class XmlElement : System.Xml.XmlLinkedNode
412     {
XmlElement(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc)413         protected internal XmlElement(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc) { }
414         public override System.Xml.XmlAttributeCollection Attributes { get { throw null; } }
415         public virtual bool HasAttributes { get { throw null; } }
416         public override string InnerText { get { throw null; } set { } }
417         public override string InnerXml { get { throw null; } set { } }
418         public bool IsEmpty { get { throw null; } set { } }
419         public override string LocalName { get { throw null; } }
420         public override string Name { get { throw null; } }
421         public override string NamespaceURI { get { throw null; } }
422         public override System.Xml.XmlNode NextSibling { get { throw null; } }
423         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
424         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
425         public override System.Xml.XmlNode ParentNode { get { throw null; } }
426         public override string Prefix { get { throw null; } set { } }
427         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
CloneNode(bool deep)428         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
GetAttribute(string name)429         public virtual string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)430         public virtual string GetAttribute(string localName, string namespaceURI) { throw null; }
GetAttributeNode(string name)431         public virtual System.Xml.XmlAttribute GetAttributeNode(string name) { throw null; }
GetAttributeNode(string localName, string namespaceURI)432         public virtual System.Xml.XmlAttribute GetAttributeNode(string localName, string namespaceURI) { throw null; }
GetElementsByTagName(string name)433         public virtual System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetElementsByTagName(string localName, string namespaceURI)434         public virtual System.Xml.XmlNodeList GetElementsByTagName(string localName, string namespaceURI) { throw null; }
HasAttribute(string name)435         public virtual bool HasAttribute(string name) { throw null; }
HasAttribute(string localName, string namespaceURI)436         public virtual bool HasAttribute(string localName, string namespaceURI) { throw null; }
RemoveAll()437         public override void RemoveAll() { }
RemoveAllAttributes()438         public virtual void RemoveAllAttributes() { }
RemoveAttribute(string name)439         public virtual void RemoveAttribute(string name) { }
RemoveAttribute(string localName, string namespaceURI)440         public virtual void RemoveAttribute(string localName, string namespaceURI) { }
RemoveAttributeAt(int i)441         public virtual System.Xml.XmlNode RemoveAttributeAt(int i) { throw null; }
RemoveAttributeNode(string localName, string namespaceURI)442         public virtual System.Xml.XmlAttribute RemoveAttributeNode(string localName, string namespaceURI) { throw null; }
RemoveAttributeNode(System.Xml.XmlAttribute oldAttr)443         public virtual System.Xml.XmlAttribute RemoveAttributeNode(System.Xml.XmlAttribute oldAttr) { throw null; }
SetAttribute(string name, string value)444         public virtual void SetAttribute(string name, string value) { }
SetAttribute(string localName, string namespaceURI, string value)445         public virtual string SetAttribute(string localName, string namespaceURI, string value) { throw null; }
SetAttributeNode(string localName, string namespaceURI)446         public virtual System.Xml.XmlAttribute SetAttributeNode(string localName, string namespaceURI) { throw null; }
SetAttributeNode(System.Xml.XmlAttribute newAttr)447         public virtual System.Xml.XmlAttribute SetAttributeNode(System.Xml.XmlAttribute newAttr) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)448         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)449         public override void WriteTo(System.Xml.XmlWriter w) { }
450     }
451     public partial class XmlEntity : System.Xml.XmlNode
452     {
XmlEntity()453         internal XmlEntity() { }
454         public override string BaseURI { get { throw null; } }
455         public override string InnerText { get { throw null; } set { } }
456         public override string InnerXml { get { throw null; } set { } }
457         public override bool IsReadOnly { get { throw null; } }
458         public override string LocalName { get { throw null; } }
459         public override string Name { get { throw null; } }
460         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
461         public string NotationName { get { throw null; } }
462         public override string OuterXml { get { throw null; } }
463         public string PublicId { get { throw null; } }
464         public string SystemId { get { throw null; } }
CloneNode(bool deep)465         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)466         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)467         public override void WriteTo(System.Xml.XmlWriter w) { }
468     }
469     public partial class XmlEntityReference : System.Xml.XmlLinkedNode
470     {
XmlEntityReference(string name, System.Xml.XmlDocument doc)471         protected internal XmlEntityReference(string name, System.Xml.XmlDocument doc) { }
472         public override string BaseURI { get { throw null; } }
473         public override bool IsReadOnly { get { throw null; } }
474         public override string LocalName { get { throw null; } }
475         public override string Name { get { throw null; } }
476         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
477         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)478         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)479         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)480         public override void WriteTo(System.Xml.XmlWriter w) { }
481     }
482     [System.SerializableAttribute]
483     public partial class XmlException : System.SystemException
484     {
XmlException()485         public XmlException() { }
XmlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)486         protected XmlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlException(string message)487         public XmlException(string message) { }
XmlException(string message, System.Exception innerException)488         public XmlException(string message, System.Exception innerException) { }
XmlException(string message, System.Exception innerException, int lineNumber, int linePosition)489         public XmlException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
490         public int LineNumber { get { throw null; } }
491         public int LinePosition { get { throw null; } }
492         public override string Message { get { throw null; } }
493         public string SourceUri { get { throw null; } }
494         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)495         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
496     }
497     public partial class XmlImplementation
498     {
XmlImplementation()499         public XmlImplementation() { }
XmlImplementation(System.Xml.XmlNameTable nt)500         public XmlImplementation(System.Xml.XmlNameTable nt) { }
CreateDocument()501         public virtual System.Xml.XmlDocument CreateDocument() { throw null; }
HasFeature(string strFeature, string strVersion)502         public bool HasFeature(string strFeature, string strVersion) { throw null; }
503     }
504     public abstract partial class XmlLinkedNode : System.Xml.XmlNode
505     {
XmlLinkedNode()506         internal XmlLinkedNode() { }
507         public override System.Xml.XmlNode NextSibling { get { throw null; } }
508         public override System.Xml.XmlNode PreviousSibling { get { throw null; } }
509     }
510     public partial class XmlNamedNodeMap : System.Collections.IEnumerable
511     {
XmlNamedNodeMap()512         internal XmlNamedNodeMap() { }
513         public virtual int Count { get { throw null; } }
GetEnumerator()514         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamedItem(string name)515         public virtual System.Xml.XmlNode GetNamedItem(string name) { throw null; }
GetNamedItem(string localName, string namespaceURI)516         public virtual System.Xml.XmlNode GetNamedItem(string localName, string namespaceURI) { throw null; }
Item(int index)517         public virtual System.Xml.XmlNode Item(int index) { throw null; }
RemoveNamedItem(string name)518         public virtual System.Xml.XmlNode RemoveNamedItem(string name) { throw null; }
RemoveNamedItem(string localName, string namespaceURI)519         public virtual System.Xml.XmlNode RemoveNamedItem(string localName, string namespaceURI) { throw null; }
SetNamedItem(System.Xml.XmlNode node)520         public virtual System.Xml.XmlNode SetNamedItem(System.Xml.XmlNode node) { throw null; }
521     }
522     public partial class XmlNamespaceManager : System.Collections.IEnumerable, System.Xml.IXmlNamespaceResolver
523     {
XmlNamespaceManager(System.Xml.XmlNameTable nameTable)524         public XmlNamespaceManager(System.Xml.XmlNameTable nameTable) { }
525         public virtual string DefaultNamespace { get { throw null; } }
526         public virtual System.Xml.XmlNameTable NameTable { get { throw null; } }
AddNamespace(string prefix, string uri)527         public virtual void AddNamespace(string prefix, string uri) { }
GetEnumerator()528         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)529         public virtual System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
HasNamespace(string prefix)530         public virtual bool HasNamespace(string prefix) { throw null; }
LookupNamespace(string prefix)531         public virtual string LookupNamespace(string prefix) { throw null; }
LookupPrefix(string uri)532         public virtual string LookupPrefix(string uri) { throw null; }
PopScope()533         public virtual bool PopScope() { throw null; }
PushScope()534         public virtual void PushScope() { }
RemoveNamespace(string prefix, string uri)535         public virtual void RemoveNamespace(string prefix, string uri) { }
536     }
537     public enum XmlNamespaceScope
538     {
539         All = 0,
540         ExcludeXml = 1,
541         Local = 2,
542     }
543     public abstract partial class XmlNameTable
544     {
XmlNameTable()545         protected XmlNameTable() { }
Add(char[] array, int offset, int length)546         public abstract string Add(char[] array, int offset, int length);
Add(string array)547         public abstract string Add(string array);
Get(char[] array, int offset, int length)548         public abstract string Get(char[] array, int offset, int length);
Get(string array)549         public abstract string Get(string array);
550     }
551     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
552     public abstract partial class XmlNode : System.Collections.IEnumerable, System.ICloneable, System.Xml.XPath.IXPathNavigable
553     {
XmlNode()554         internal XmlNode() { }
555         public virtual System.Xml.XmlAttributeCollection Attributes { get { throw null; } }
556         public virtual string BaseURI { get { throw null; } }
557         public virtual System.Xml.XmlNodeList ChildNodes { get { throw null; } }
558         public virtual System.Xml.XmlNode FirstChild { get { throw null; } }
559         public virtual bool HasChildNodes { get { throw null; } }
560         public virtual string InnerText { get { throw null; } set { } }
561         public virtual string InnerXml { get { throw null; } set { } }
562         public virtual bool IsReadOnly { get { throw null; } }
563         public virtual System.Xml.XmlElement this[string name] { get { throw null; } }
564         public virtual System.Xml.XmlElement this[string localname, string ns] { get { throw null; } }
565         public virtual System.Xml.XmlNode LastChild { get { throw null; } }
566         public abstract string LocalName { get; }
567         public abstract string Name { get; }
568         public virtual string NamespaceURI { get { throw null; } }
569         public virtual System.Xml.XmlNode NextSibling { get { throw null; } }
570         public abstract System.Xml.XmlNodeType NodeType { get; }
571         public virtual string OuterXml { get { throw null; } }
572         public virtual System.Xml.XmlDocument OwnerDocument { get { throw null; } }
573         public virtual System.Xml.XmlNode ParentNode { get { throw null; } }
574         public virtual string Prefix { get { throw null; } set { } }
575         public virtual System.Xml.XmlNode PreviousSibling { get { throw null; } }
576         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
577         public virtual string Value { get { throw null; } set { } }
AppendChild(System.Xml.XmlNode newChild)578         public virtual System.Xml.XmlNode AppendChild(System.Xml.XmlNode newChild) { throw null; }
Clone()579         public virtual System.Xml.XmlNode Clone() { throw null; }
CloneNode(bool deep)580         public abstract System.Xml.XmlNode CloneNode(bool deep);
CreateNavigator()581         public virtual System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
GetEnumerator()582         public System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamespaceOfPrefix(string prefix)583         public virtual string GetNamespaceOfPrefix(string prefix) { throw null; }
GetPrefixOfNamespace(string namespaceURI)584         public virtual string GetPrefixOfNamespace(string namespaceURI) { throw null; }
InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)585         public virtual System.Xml.XmlNode InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)586         public virtual System.Xml.XmlNode InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
Normalize()587         public virtual void Normalize() { }
PrependChild(System.Xml.XmlNode newChild)588         public virtual System.Xml.XmlNode PrependChild(System.Xml.XmlNode newChild) { throw null; }
RemoveAll()589         public virtual void RemoveAll() { }
RemoveChild(System.Xml.XmlNode oldChild)590         public virtual System.Xml.XmlNode RemoveChild(System.Xml.XmlNode oldChild) { throw null; }
ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild)591         public virtual System.Xml.XmlNode ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild) { throw null; }
SelectNodes(string xpath)592         public System.Xml.XmlNodeList SelectNodes(string xpath) { throw null; }
SelectNodes(string xpath, System.Xml.XmlNamespaceManager nsmgr)593         public System.Xml.XmlNodeList SelectNodes(string xpath, System.Xml.XmlNamespaceManager nsmgr) { throw null; }
SelectSingleNode(string xpath)594         public System.Xml.XmlNode SelectSingleNode(string xpath) { throw null; }
SelectSingleNode(string xpath, System.Xml.XmlNamespaceManager nsmgr)595         public System.Xml.XmlNode SelectSingleNode(string xpath, System.Xml.XmlNamespaceManager nsmgr) { throw null; }
Supports(string feature, string version)596         public virtual bool Supports(string feature, string version) { throw null; }
System.Collections.IEnumerable.GetEnumerator()597         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ICloneable.Clone()598         object System.ICloneable.Clone() { throw null; }
WriteContentTo(System.Xml.XmlWriter w)599         public abstract void WriteContentTo(System.Xml.XmlWriter w);
WriteTo(System.Xml.XmlWriter w)600         public abstract void WriteTo(System.Xml.XmlWriter w);
601     }
602     public enum XmlNodeChangedAction
603     {
604         Change = 2,
605         Insert = 0,
606         Remove = 1,
607     }
608     public partial class XmlNodeChangedEventArgs : System.EventArgs
609     {
XmlNodeChangedEventArgs(System.Xml.XmlNode node, System.Xml.XmlNode oldParent, System.Xml.XmlNode newParent, string oldValue, string newValue, System.Xml.XmlNodeChangedAction action)610         public XmlNodeChangedEventArgs(System.Xml.XmlNode node, System.Xml.XmlNode oldParent, System.Xml.XmlNode newParent, string oldValue, string newValue, System.Xml.XmlNodeChangedAction action) { }
611         public System.Xml.XmlNodeChangedAction Action { get { throw null; } }
612         public System.Xml.XmlNode NewParent { get { throw null; } }
613         public string NewValue { get { throw null; } }
614         public System.Xml.XmlNode Node { get { throw null; } }
615         public System.Xml.XmlNode OldParent { get { throw null; } }
616         public string OldValue { get { throw null; } }
617     }
XmlNodeChangedEventHandler(object sender, System.Xml.XmlNodeChangedEventArgs e)618     public delegate void XmlNodeChangedEventHandler(object sender, System.Xml.XmlNodeChangedEventArgs e);
619     public abstract partial class XmlNodeList : System.Collections.IEnumerable, System.IDisposable
620     {
XmlNodeList()621         protected XmlNodeList() { }
622         public abstract int Count { get; }
623         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
624         public virtual System.Xml.XmlNode this[int i] { get { throw null; } }
GetEnumerator()625         public abstract System.Collections.IEnumerator GetEnumerator();
Item(int index)626         public abstract System.Xml.XmlNode Item(int index);
PrivateDisposeNodeList()627         protected virtual void PrivateDisposeNodeList() { }
System.IDisposable.Dispose()628         void System.IDisposable.Dispose() { }
629     }
630     public enum XmlNodeOrder
631     {
632         After = 1,
633         Before = 0,
634         Same = 2,
635         Unknown = 3,
636     }
637     public partial class XmlNodeReader : System.Xml.XmlReader, System.Xml.IXmlNamespaceResolver
638     {
XmlNodeReader(System.Xml.XmlNode node)639         public XmlNodeReader(System.Xml.XmlNode node) { }
640         public override int AttributeCount { get { throw null; } }
641         public override string BaseURI { get { throw null; } }
642         public override bool CanReadBinaryContent { get { throw null; } }
643         public override bool CanResolveEntity { get { throw null; } }
644         public override int Depth { get { throw null; } }
645         public override bool EOF { get { throw null; } }
646         public override bool HasAttributes { get { throw null; } }
647         public override bool HasValue { get { throw null; } }
648         public override bool IsDefault { get { throw null; } }
649         public override bool IsEmptyElement { get { throw null; } }
650         public override string LocalName { get { throw null; } }
651         public override string Name { get { throw null; } }
652         public override string NamespaceURI { get { throw null; } }
653         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
654         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
655         public override string Prefix { get { throw null; } }
656         public override System.Xml.ReadState ReadState { get { throw null; } }
657         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
658         public override string Value { get { throw null; } }
659         public override string XmlLang { get { throw null; } }
660         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()661         public override void Close() { }
GetAttribute(int attributeIndex)662         public override string GetAttribute(int attributeIndex) { throw null; }
GetAttribute(string name)663         public override string GetAttribute(string name) { throw null; }
GetAttribute(string name, string namespaceURI)664         public override string GetAttribute(string name, string namespaceURI) { throw null; }
LookupNamespace(string prefix)665         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int attributeIndex)666         public override void MoveToAttribute(int attributeIndex) { }
MoveToAttribute(string name)667         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string name, string namespaceURI)668         public override bool MoveToAttribute(string name, string namespaceURI) { throw null; }
MoveToElement()669         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()670         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()671         public override bool MoveToNextAttribute() { throw null; }
Read()672         public override bool Read() { throw null; }
ReadAttributeValue()673         public override bool ReadAttributeValue() { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)674         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)675         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)676         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)677         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()678         public override string ReadString() { throw null; }
ResolveEntity()679         public override void ResolveEntity() { }
Skip()680         public override void Skip() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)681         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)682         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)683         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
684     }
685     public enum XmlNodeType
686     {
687         Attribute = 2,
688         CDATA = 4,
689         Comment = 8,
690         Document = 9,
691         DocumentFragment = 11,
692         DocumentType = 10,
693         Element = 1,
694         EndElement = 15,
695         EndEntity = 16,
696         Entity = 6,
697         EntityReference = 5,
698         None = 0,
699         Notation = 12,
700         ProcessingInstruction = 7,
701         SignificantWhitespace = 14,
702         Text = 3,
703         Whitespace = 13,
704         XmlDeclaration = 17,
705     }
706     public partial class XmlNotation : System.Xml.XmlNode
707     {
XmlNotation()708         internal XmlNotation() { }
709         public override string InnerXml { get { throw null; } set { } }
710         public override bool IsReadOnly { get { throw null; } }
711         public override string LocalName { get { throw null; } }
712         public override string Name { get { throw null; } }
713         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
714         public override string OuterXml { get { throw null; } }
715         public string PublicId { get { throw null; } }
716         public string SystemId { get { throw null; } }
CloneNode(bool deep)717         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)718         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)719         public override void WriteTo(System.Xml.XmlWriter w) { }
720     }
721     public enum XmlOutputMethod
722     {
723         AutoDetect = 3,
724         Html = 1,
725         Text = 2,
726         Xml = 0,
727     }
728     public partial class XmlParserContext
729     {
XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace)730         public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace) { }
XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)731         public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc) { }
XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace)732         public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace) { }
XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc)733         public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc) { }
734         public string BaseURI { get { throw null; } set { } }
735         public string DocTypeName { get { throw null; } set { } }
736         public System.Text.Encoding Encoding { get { throw null; } set { } }
737         public string InternalSubset { get { throw null; } set { } }
738         public System.Xml.XmlNamespaceManager NamespaceManager { get { throw null; } set { } }
739         public System.Xml.XmlNameTable NameTable { get { throw null; } set { } }
740         public string PublicId { get { throw null; } set { } }
741         public string SystemId { get { throw null; } set { } }
742         public string XmlLang { get { throw null; } set { } }
743         public System.Xml.XmlSpace XmlSpace { get { throw null; } set { } }
744     }
745     public partial class XmlProcessingInstruction : System.Xml.XmlLinkedNode
746     {
XmlProcessingInstruction(string target, string data, System.Xml.XmlDocument doc)747         protected internal XmlProcessingInstruction(string target, string data, System.Xml.XmlDocument doc) { }
748         public string Data { get { throw null; } set { } }
749         public override string InnerText { get { throw null; } set { } }
750         public override string LocalName { get { throw null; } }
751         public override string Name { get { throw null; } }
752         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
753         public string Target { get { throw null; } }
754         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)755         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)756         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)757         public override void WriteTo(System.Xml.XmlWriter w) { }
758     }
759     [System.SerializableAttribute]
760     public partial class XmlQualifiedName
761     {
762         public static readonly System.Xml.XmlQualifiedName Empty;
XmlQualifiedName()763         public XmlQualifiedName() { }
XmlQualifiedName(string name)764         public XmlQualifiedName(string name) { }
XmlQualifiedName(string name, string ns)765         public XmlQualifiedName(string name, string ns) { }
766         public bool IsEmpty { get { throw null; } }
767         public string Name { get { throw null; } }
768         public string Namespace { get { throw null; } }
Equals(object other)769         public override bool Equals(object other) { throw null; }
GetHashCode()770         public override int GetHashCode() { throw null; }
operator ==(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b)771         public static bool operator ==(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b) { throw null; }
operator !=(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b)772         public static bool operator !=(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b) { throw null; }
ToString()773         public override string ToString() { throw null; }
ToString(string name, string ns)774         public static string ToString(string name, string ns) { throw null; }
775     }
776     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
777     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
778     public abstract partial class XmlReader : System.IDisposable
779     {
XmlReader()780         protected XmlReader() { }
781         public abstract int AttributeCount { get; }
782         public abstract string BaseURI { get; }
783         public virtual bool CanReadBinaryContent { get { throw null; } }
784         public virtual bool CanReadValueChunk { get { throw null; } }
785         public virtual bool CanResolveEntity { get { throw null; } }
786         public abstract int Depth { get; }
787         public abstract bool EOF { get; }
788         public virtual bool HasAttributes { get { throw null; } }
789         public virtual bool HasValue { get { throw null; } }
790         public virtual bool IsDefault { get { throw null; } }
791         public abstract bool IsEmptyElement { get; }
792         public virtual string this[int i] { get { throw null; } }
793         public virtual string this[string name] { get { throw null; } }
794         public virtual string this[string name, string namespaceURI] { get { throw null; } }
795         public abstract string LocalName { get; }
796         public virtual string Name { get { throw null; } }
797         public abstract string NamespaceURI { get; }
798         public abstract System.Xml.XmlNameTable NameTable { get; }
799         public abstract System.Xml.XmlNodeType NodeType { get; }
800         public abstract string Prefix { get; }
801         public virtual char QuoteChar { get { throw null; } }
802         public abstract System.Xml.ReadState ReadState { get; }
803         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
804         public virtual System.Xml.XmlReaderSettings Settings { get { throw null; } }
805         public abstract string Value { get; }
806         public virtual System.Type ValueType { get { throw null; } }
807         public virtual string XmlLang { get { throw null; } }
808         public virtual System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()809         public virtual void Close() { }
Create(System.IO.Stream input)810         public static System.Xml.XmlReader Create(System.IO.Stream input) { throw null; }
Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings)811         public static System.Xml.XmlReader Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings) { throw null; }
Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings, string baseUri)812         public static System.Xml.XmlReader Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings, string baseUri) { throw null; }
Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext)813         public static System.Xml.XmlReader Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext) { throw null; }
Create(System.IO.TextReader input)814         public static System.Xml.XmlReader Create(System.IO.TextReader input) { throw null; }
Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings)815         public static System.Xml.XmlReader Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings) { throw null; }
Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings, string baseUri)816         public static System.Xml.XmlReader Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings, string baseUri) { throw null; }
Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext)817         public static System.Xml.XmlReader Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext) { throw null; }
Create(string inputUri)818         public static System.Xml.XmlReader Create(string inputUri) { throw null; }
Create(string inputUri, System.Xml.XmlReaderSettings settings)819         public static System.Xml.XmlReader Create(string inputUri, System.Xml.XmlReaderSettings settings) { throw null; }
Create(string inputUri, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext)820         public static System.Xml.XmlReader Create(string inputUri, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext) { throw null; }
Create(System.Xml.XmlReader reader, System.Xml.XmlReaderSettings settings)821         public static System.Xml.XmlReader Create(System.Xml.XmlReader reader, System.Xml.XmlReaderSettings settings) { throw null; }
Dispose()822         public void Dispose() { }
Dispose(bool disposing)823         protected virtual void Dispose(bool disposing) { }
GetAttribute(int i)824         public abstract string GetAttribute(int i);
GetAttribute(string name)825         public abstract string GetAttribute(string name);
GetAttribute(string name, string namespaceURI)826         public abstract string GetAttribute(string name, string namespaceURI);
GetValueAsync()827         public virtual System.Threading.Tasks.Task<string> GetValueAsync() { throw null; }
IsName(string str)828         public static bool IsName(string str) { throw null; }
IsNameToken(string str)829         public static bool IsNameToken(string str) { throw null; }
IsStartElement()830         public virtual bool IsStartElement() { throw null; }
IsStartElement(string name)831         public virtual bool IsStartElement(string name) { throw null; }
IsStartElement(string localname, string ns)832         public virtual bool IsStartElement(string localname, string ns) { throw null; }
LookupNamespace(string prefix)833         public abstract string LookupNamespace(string prefix);
MoveToAttribute(int i)834         public virtual void MoveToAttribute(int i) { }
MoveToAttribute(string name)835         public abstract bool MoveToAttribute(string name);
MoveToAttribute(string name, string ns)836         public abstract bool MoveToAttribute(string name, string ns);
MoveToContent()837         public virtual System.Xml.XmlNodeType MoveToContent() { throw null; }
MoveToContentAsync()838         public virtual System.Threading.Tasks.Task<System.Xml.XmlNodeType> MoveToContentAsync() { throw null; }
MoveToElement()839         public abstract bool MoveToElement();
MoveToFirstAttribute()840         public abstract bool MoveToFirstAttribute();
MoveToNextAttribute()841         public abstract bool MoveToNextAttribute();
Read()842         public abstract bool Read();
ReadAsync()843         public virtual System.Threading.Tasks.Task<bool> ReadAsync() { throw null; }
ReadAttributeValue()844         public abstract bool ReadAttributeValue();
ReadContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)845         public virtual object ReadContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)846         public virtual System.Threading.Tasks.Task<object> ReadContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)847         public virtual int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBase64Async(byte[] buffer, int index, int count)848         public virtual System.Threading.Tasks.Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)849         public virtual int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHexAsync(byte[] buffer, int index, int count)850         public virtual System.Threading.Tasks.Task<int> ReadContentAsBinHexAsync(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBoolean()851         public virtual bool ReadContentAsBoolean() { throw null; }
ReadContentAsDateTime()852         public virtual System.DateTime ReadContentAsDateTime() { throw null; }
ReadContentAsDateTimeOffset()853         public virtual System.DateTimeOffset ReadContentAsDateTimeOffset() { throw null; }
ReadContentAsDecimal()854         public virtual decimal ReadContentAsDecimal() { throw null; }
ReadContentAsDouble()855         public virtual double ReadContentAsDouble() { throw null; }
ReadContentAsFloat()856         public virtual float ReadContentAsFloat() { throw null; }
ReadContentAsInt()857         public virtual int ReadContentAsInt() { throw null; }
ReadContentAsLong()858         public virtual long ReadContentAsLong() { throw null; }
ReadContentAsObject()859         public virtual object ReadContentAsObject() { throw null; }
ReadContentAsObjectAsync()860         public virtual System.Threading.Tasks.Task<object> ReadContentAsObjectAsync() { throw null; }
ReadContentAsString()861         public virtual string ReadContentAsString() { throw null; }
ReadContentAsStringAsync()862         public virtual System.Threading.Tasks.Task<string> ReadContentAsStringAsync() { throw null; }
ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)863         public virtual object ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver, string localName, string namespaceURI)864         public virtual object ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver, string localName, string namespaceURI) { throw null; }
ReadElementContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)865         public virtual System.Threading.Tasks.Task<object> ReadElementContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)866         public virtual int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64Async(byte[] buffer, int index, int count)867         public virtual System.Threading.Tasks.Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)868         public virtual int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)869         public virtual System.Threading.Tasks.Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBoolean()870         public virtual bool ReadElementContentAsBoolean() { throw null; }
ReadElementContentAsBoolean(string localName, string namespaceURI)871         public virtual bool ReadElementContentAsBoolean(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDateTime()872         public virtual System.DateTime ReadElementContentAsDateTime() { throw null; }
ReadElementContentAsDateTime(string localName, string namespaceURI)873         public virtual System.DateTime ReadElementContentAsDateTime(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDecimal()874         public virtual decimal ReadElementContentAsDecimal() { throw null; }
ReadElementContentAsDecimal(string localName, string namespaceURI)875         public virtual decimal ReadElementContentAsDecimal(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDouble()876         public virtual double ReadElementContentAsDouble() { throw null; }
ReadElementContentAsDouble(string localName, string namespaceURI)877         public virtual double ReadElementContentAsDouble(string localName, string namespaceURI) { throw null; }
ReadElementContentAsFloat()878         public virtual float ReadElementContentAsFloat() { throw null; }
ReadElementContentAsFloat(string localName, string namespaceURI)879         public virtual float ReadElementContentAsFloat(string localName, string namespaceURI) { throw null; }
ReadElementContentAsInt()880         public virtual int ReadElementContentAsInt() { throw null; }
ReadElementContentAsInt(string localName, string namespaceURI)881         public virtual int ReadElementContentAsInt(string localName, string namespaceURI) { throw null; }
ReadElementContentAsLong()882         public virtual long ReadElementContentAsLong() { throw null; }
ReadElementContentAsLong(string localName, string namespaceURI)883         public virtual long ReadElementContentAsLong(string localName, string namespaceURI) { throw null; }
ReadElementContentAsObject()884         public virtual object ReadElementContentAsObject() { throw null; }
ReadElementContentAsObject(string localName, string namespaceURI)885         public virtual object ReadElementContentAsObject(string localName, string namespaceURI) { throw null; }
ReadElementContentAsObjectAsync()886         public virtual System.Threading.Tasks.Task<object> ReadElementContentAsObjectAsync() { throw null; }
ReadElementContentAsString()887         public virtual string ReadElementContentAsString() { throw null; }
ReadElementContentAsString(string localName, string namespaceURI)888         public virtual string ReadElementContentAsString(string localName, string namespaceURI) { throw null; }
ReadElementContentAsStringAsync()889         public virtual System.Threading.Tasks.Task<string> ReadElementContentAsStringAsync() { throw null; }
890         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString()891         public virtual string ReadElementString() { throw null; }
892         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString(string name)893         public virtual string ReadElementString(string name) { throw null; }
894         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString(string localname, string ns)895         public virtual string ReadElementString(string localname, string ns) { throw null; }
ReadEndElement()896         public virtual void ReadEndElement() { }
ReadInnerXml()897         public virtual string ReadInnerXml() { throw null; }
ReadInnerXmlAsync()898         public virtual System.Threading.Tasks.Task<string> ReadInnerXmlAsync() { throw null; }
ReadOuterXml()899         public virtual string ReadOuterXml() { throw null; }
ReadOuterXmlAsync()900         public virtual System.Threading.Tasks.Task<string> ReadOuterXmlAsync() { throw null; }
ReadStartElement()901         public virtual void ReadStartElement() { }
ReadStartElement(string name)902         public virtual void ReadStartElement(string name) { }
ReadStartElement(string localname, string ns)903         public virtual void ReadStartElement(string localname, string ns) { }
904         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadString()905         public virtual string ReadString() { throw null; }
ReadSubtree()906         public virtual System.Xml.XmlReader ReadSubtree() { throw null; }
ReadToDescendant(string name)907         public virtual bool ReadToDescendant(string name) { throw null; }
ReadToDescendant(string localName, string namespaceURI)908         public virtual bool ReadToDescendant(string localName, string namespaceURI) { throw null; }
ReadToFollowing(string name)909         public virtual bool ReadToFollowing(string name) { throw null; }
ReadToFollowing(string localName, string namespaceURI)910         public virtual bool ReadToFollowing(string localName, string namespaceURI) { throw null; }
ReadToNextSibling(string name)911         public virtual bool ReadToNextSibling(string name) { throw null; }
ReadToNextSibling(string localName, string namespaceURI)912         public virtual bool ReadToNextSibling(string localName, string namespaceURI) { throw null; }
ReadValueChunk(char[] buffer, int index, int count)913         public virtual int ReadValueChunk(char[] buffer, int index, int count) { throw null; }
ReadValueChunkAsync(char[] buffer, int index, int count)914         public virtual System.Threading.Tasks.Task<int> ReadValueChunkAsync(char[] buffer, int index, int count) { throw null; }
ResolveEntity()915         public abstract void ResolveEntity();
Skip()916         public virtual void Skip() { }
SkipAsync()917         public virtual System.Threading.Tasks.Task SkipAsync() { throw null; }
918     }
919     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
920     public sealed partial class XmlReaderSettings
921     {
XmlReaderSettings()922         public XmlReaderSettings() { }
923         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
924         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
XmlReaderSettings(System.Xml.XmlResolver resolver)925         public XmlReaderSettings(System.Xml.XmlResolver resolver) { }
926         public bool Async { get { throw null; } set { } }
927         public bool CheckCharacters { get { throw null; } set { } }
928         public bool CloseInput { get { throw null; } set { } }
929         public System.Xml.ConformanceLevel ConformanceLevel { get { throw null; } set { } }
930         public System.Xml.DtdProcessing DtdProcessing { get { throw null; } set { } }
931         public bool IgnoreComments { get { throw null; } set { } }
932         public bool IgnoreProcessingInstructions { get { throw null; } set { } }
933         public bool IgnoreWhitespace { get { throw null; } set { } }
934         public int LineNumberOffset { get { throw null; } set { } }
935         public int LinePositionOffset { get { throw null; } set { } }
936         public long MaxCharactersFromEntities { get { throw null; } set { } }
937         public long MaxCharactersInDocument { get { throw null; } set { } }
938         public System.Xml.XmlNameTable NameTable { get { throw null; } set { } }
939         [System.ObsoleteAttribute("Use XmlReaderSettings.DtdProcessing property instead.")]
940         public bool ProhibitDtd { get { throw null; } set { } }
941         public System.Xml.Schema.XmlSchemaSet Schemas { get { throw null; } set { } }
942         public System.Xml.Schema.XmlSchemaValidationFlags ValidationFlags { get { throw null; } set { } }
943         public System.Xml.ValidationType ValidationType { get { throw null; } set { } }
944         public System.Xml.XmlResolver XmlResolver { set { } }
945         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Clone()946         public System.Xml.XmlReaderSettings Clone() { throw null; }
Reset()947         public void Reset() { }
948     }
949     public abstract partial class XmlResolver
950     {
XmlResolver()951         protected XmlResolver() { }
952         public virtual System.Net.ICredentials Credentials { set { } }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)953         public abstract object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn);
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)954         public virtual System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
ResolveUri(System.Uri baseUri, string relativeUri)955         public virtual System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
SupportsType(System.Uri absoluteUri, System.Type type)956         public virtual bool SupportsType(System.Uri absoluteUri, System.Type type) { throw null; }
957     }
958     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
959     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
960     public partial class XmlSecureResolver : System.Xml.XmlResolver
961     {
XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.PermissionSet permissionSet)962         public XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.PermissionSet permissionSet) { }
XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence)963         public XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
XmlSecureResolver(System.Xml.XmlResolver resolver, string securityUrl)964         public XmlSecureResolver(System.Xml.XmlResolver resolver, string securityUrl) { }
965         public override System.Net.ICredentials Credentials { set { } }
CreateEvidenceForUrl(string securityUrl)966         public static System.Security.Policy.Evidence CreateEvidenceForUrl(string securityUrl) { throw null; }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)967         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)968         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
ResolveUri(System.Uri baseUri, string relativeUri)969         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
970     }
971     public partial class XmlSignificantWhitespace : System.Xml.XmlCharacterData
972     {
XmlSignificantWhitespace(string strData, System.Xml.XmlDocument doc)973         protected internal XmlSignificantWhitespace(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
974         public override string LocalName { get { throw null; } }
975         public override string Name { get { throw null; } }
976         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
977         public override System.Xml.XmlNode ParentNode { get { throw null; } }
978         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)979         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)980         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)981         public override void WriteTo(System.Xml.XmlWriter w) { }
982     }
983     public enum XmlSpace
984     {
985         Default = 1,
986         None = 0,
987         Preserve = 2,
988     }
989     public partial class XmlText : System.Xml.XmlCharacterData
990     {
XmlText(string strData, System.Xml.XmlDocument doc)991         protected internal XmlText(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
992         public override string LocalName { get { throw null; } }
993         public override string Name { get { throw null; } }
994         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
995         public override System.Xml.XmlNode ParentNode { get { throw null; } }
996         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)997         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
SplitText(int offset)998         public virtual System.Xml.XmlText SplitText(int offset) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)999         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)1000         public override void WriteTo(System.Xml.XmlWriter w) { }
1001     }
1002     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1003     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1004     public partial class XmlTextReader : System.Xml.XmlReader, System.Xml.IXmlLineInfo, System.Xml.IXmlNamespaceResolver
1005     {
XmlTextReader()1006         protected XmlTextReader() { }
XmlTextReader(System.IO.Stream input)1007         public XmlTextReader(System.IO.Stream input) { }
XmlTextReader(System.IO.Stream input, System.Xml.XmlNameTable nt)1008         public XmlTextReader(System.IO.Stream input, System.Xml.XmlNameTable nt) { }
XmlTextReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)1009         public XmlTextReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlTextReader(System.IO.TextReader input)1010         public XmlTextReader(System.IO.TextReader input) { }
XmlTextReader(System.IO.TextReader input, System.Xml.XmlNameTable nt)1011         public XmlTextReader(System.IO.TextReader input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url)1012         public XmlTextReader(string url) { }
XmlTextReader(string url, System.IO.Stream input)1013         public XmlTextReader(string url, System.IO.Stream input) { }
XmlTextReader(string url, System.IO.Stream input, System.Xml.XmlNameTable nt)1014         public XmlTextReader(string url, System.IO.Stream input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url, System.IO.TextReader input)1015         public XmlTextReader(string url, System.IO.TextReader input) { }
XmlTextReader(string url, System.IO.TextReader input, System.Xml.XmlNameTable nt)1016         public XmlTextReader(string url, System.IO.TextReader input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url, System.Xml.XmlNameTable nt)1017         public XmlTextReader(string url, System.Xml.XmlNameTable nt) { }
XmlTextReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)1018         public XmlTextReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlTextReader(System.Xml.XmlNameTable nt)1019         protected XmlTextReader(System.Xml.XmlNameTable nt) { }
1020         public override int AttributeCount { get { throw null; } }
1021         public override string BaseURI { get { throw null; } }
1022         public override bool CanReadBinaryContent { get { throw null; } }
1023         public override bool CanReadValueChunk { get { throw null; } }
1024         public override bool CanResolveEntity { get { throw null; } }
1025         public override int Depth { get { throw null; } }
1026         public System.Xml.DtdProcessing DtdProcessing { get { throw null; } set { } }
1027         public System.Text.Encoding Encoding { get { throw null; } }
1028         public System.Xml.EntityHandling EntityHandling { get { throw null; } set { } }
1029         public override bool EOF { get { throw null; } }
1030         public override bool HasValue { get { throw null; } }
1031         public override bool IsDefault { get { throw null; } }
1032         public override bool IsEmptyElement { get { throw null; } }
1033         public int LineNumber { get { throw null; } }
1034         public int LinePosition { get { throw null; } }
1035         public override string LocalName { get { throw null; } }
1036         public override string Name { get { throw null; } }
1037         public bool Namespaces { get { throw null; } set { } }
1038         public override string NamespaceURI { get { throw null; } }
1039         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
1040         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1041         public bool Normalization { get { throw null; } set { } }
1042         public override string Prefix { get { throw null; } }
1043         [System.ObsoleteAttribute("Use DtdProcessing property instead.")]
1044         public bool ProhibitDtd { get { throw null; } set { } }
1045         public override char QuoteChar { get { throw null; } }
1046         public override System.Xml.ReadState ReadState { get { throw null; } }
1047         public override string Value { get { throw null; } }
1048         public System.Xml.WhitespaceHandling WhitespaceHandling { get { throw null; } set { } }
1049         public override string XmlLang { get { throw null; } }
1050         public System.Xml.XmlResolver XmlResolver { set { } }
1051         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1052         public override void Close() { }
GetAttribute(int i)1053         public override string GetAttribute(int i) { throw null; }
GetAttribute(string name)1054         public override string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)1055         public override string GetAttribute(string localName, string namespaceURI) { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1056         public System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
GetRemainder()1057         public System.IO.TextReader GetRemainder() { throw null; }
HasLineInfo()1058         public bool HasLineInfo() { throw null; }
LookupNamespace(string prefix)1059         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int i)1060         public override void MoveToAttribute(int i) { }
MoveToAttribute(string name)1061         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string localName, string namespaceURI)1062         public override bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToElement()1063         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()1064         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()1065         public override bool MoveToNextAttribute() { throw null; }
Read()1066         public override bool Read() { throw null; }
ReadAttributeValue()1067         public override bool ReadAttributeValue() { throw null; }
ReadBase64(byte[] array, int offset, int len)1068         public int ReadBase64(byte[] array, int offset, int len) { throw null; }
ReadBinHex(byte[] array, int offset, int len)1069         public int ReadBinHex(byte[] array, int offset, int len) { throw null; }
ReadChars(char[] buffer, int index, int count)1070         public int ReadChars(char[] buffer, int index, int count) { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)1071         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)1072         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)1073         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)1074         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()1075         public override string ReadString() { throw null; }
ResetState()1076         public void ResetState() { }
ResolveEntity()1077         public override void ResolveEntity() { }
Skip()1078         public override void Skip() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1079         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)1080         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)1081         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
1082     }
1083     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1084     public partial class XmlTextWriter : System.Xml.XmlWriter
1085     {
XmlTextWriter(System.IO.Stream w, System.Text.Encoding encoding)1086         public XmlTextWriter(System.IO.Stream w, System.Text.Encoding encoding) { }
XmlTextWriter(System.IO.TextWriter w)1087         public XmlTextWriter(System.IO.TextWriter w) { }
XmlTextWriter(string filename, System.Text.Encoding encoding)1088         public XmlTextWriter(string filename, System.Text.Encoding encoding) { }
1089         public System.IO.Stream BaseStream { get { throw null; } }
1090         public System.Xml.Formatting Formatting { get { throw null; } set { } }
1091         public int Indentation { get { throw null; } set { } }
1092         public char IndentChar { get { throw null; } set { } }
1093         public bool Namespaces { get { throw null; } set { } }
1094         public char QuoteChar { get { throw null; } set { } }
1095         public override System.Xml.WriteState WriteState { get { throw null; } }
1096         public override string XmlLang { get { throw null; } }
1097         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1098         public override void Close() { }
Flush()1099         public override void Flush() { }
LookupPrefix(string ns)1100         public override string LookupPrefix(string ns) { throw null; }
WriteBase64(byte[] buffer, int index, int count)1101         public override void WriteBase64(byte[] buffer, int index, int count) { }
WriteBinHex(byte[] buffer, int index, int count)1102         public override void WriteBinHex(byte[] buffer, int index, int count) { }
WriteCData(string text)1103         public override void WriteCData(string text) { }
WriteCharEntity(char ch)1104         public override void WriteCharEntity(char ch) { }
WriteChars(char[] buffer, int index, int count)1105         public override void WriteChars(char[] buffer, int index, int count) { }
WriteComment(string text)1106         public override void WriteComment(string text) { }
WriteDocType(string name, string pubid, string sysid, string subset)1107         public override void WriteDocType(string name, string pubid, string sysid, string subset) { }
WriteEndAttribute()1108         public override void WriteEndAttribute() { }
WriteEndDocument()1109         public override void WriteEndDocument() { }
WriteEndElement()1110         public override void WriteEndElement() { }
WriteEntityRef(string name)1111         public override void WriteEntityRef(string name) { }
WriteFullEndElement()1112         public override void WriteFullEndElement() { }
WriteName(string name)1113         public override void WriteName(string name) { }
WriteNmToken(string name)1114         public override void WriteNmToken(string name) { }
WriteProcessingInstruction(string name, string text)1115         public override void WriteProcessingInstruction(string name, string text) { }
WriteQualifiedName(string localName, string ns)1116         public override void WriteQualifiedName(string localName, string ns) { }
WriteRaw(char[] buffer, int index, int count)1117         public override void WriteRaw(char[] buffer, int index, int count) { }
WriteRaw(string data)1118         public override void WriteRaw(string data) { }
WriteStartAttribute(string prefix, string localName, string ns)1119         public override void WriteStartAttribute(string prefix, string localName, string ns) { }
WriteStartDocument()1120         public override void WriteStartDocument() { }
WriteStartDocument(bool standalone)1121         public override void WriteStartDocument(bool standalone) { }
WriteStartElement(string prefix, string localName, string ns)1122         public override void WriteStartElement(string prefix, string localName, string ns) { }
WriteString(string text)1123         public override void WriteString(string text) { }
WriteSurrogateCharEntity(char lowChar, char highChar)1124         public override void WriteSurrogateCharEntity(char lowChar, char highChar) { }
WriteWhitespace(string ws)1125         public override void WriteWhitespace(string ws) { }
1126     }
1127     public enum XmlTokenizedType
1128     {
1129         CDATA = 0,
1130         ENTITIES = 5,
1131         ENTITY = 4,
1132         ENUMERATION = 9,
1133         ID = 1,
1134         IDREF = 2,
1135         IDREFS = 3,
1136         NCName = 11,
1137         NMTOKEN = 6,
1138         NMTOKENS = 7,
1139         None = 12,
1140         NOTATION = 8,
1141         QName = 10,
1142     }
1143     public partial class XmlUrlResolver : System.Xml.XmlResolver
1144     {
XmlUrlResolver()1145         public XmlUrlResolver() { }
1146         public System.Net.Cache.RequestCachePolicy CachePolicy { set { } }
1147         public override System.Net.ICredentials Credentials { set { } }
1148         public System.Net.IWebProxy Proxy { set { } }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1149         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1150         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
1151         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
ResolveUri(System.Uri baseUri, string relativeUri)1152         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
1153     }
1154     [System.ObsoleteAttribute("Use XmlReader created by XmlReader.Create() method using appropriate XmlReaderSettings instead. http://go.microsoft.com/fwlink/?linkid=14202")]
1155     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1156     public partial class XmlValidatingReader : System.Xml.XmlReader, System.Xml.IXmlLineInfo, System.Xml.IXmlNamespaceResolver
1157     {
XmlValidatingReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)1158         public XmlValidatingReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlValidatingReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)1159         public XmlValidatingReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlValidatingReader(System.Xml.XmlReader reader)1160         public XmlValidatingReader(System.Xml.XmlReader reader) { }
1161         public override int AttributeCount { get { throw null; } }
1162         public override string BaseURI { get { throw null; } }
1163         public override bool CanReadBinaryContent { get { throw null; } }
1164         public override bool CanResolveEntity { get { throw null; } }
1165         public override int Depth { get { throw null; } }
1166         public System.Text.Encoding Encoding { get { throw null; } }
1167         public System.Xml.EntityHandling EntityHandling { get { throw null; } set { } }
1168         public override bool EOF { get { throw null; } }
1169         public override bool HasValue { get { throw null; } }
1170         public override bool IsDefault { get { throw null; } }
1171         public override bool IsEmptyElement { get { throw null; } }
1172         public int LineNumber { get { throw null; } }
1173         public int LinePosition { get { throw null; } }
1174         public override string LocalName { get { throw null; } }
1175         public override string Name { get { throw null; } }
1176         public bool Namespaces { get { throw null; } set { } }
1177         public override string NamespaceURI { get { throw null; } }
1178         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
1179         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1180         public override string Prefix { get { throw null; } }
1181         public override char QuoteChar { get { throw null; } }
1182         public System.Xml.XmlReader Reader { get { throw null; } }
1183         public override System.Xml.ReadState ReadState { get { throw null; } }
1184         public System.Xml.Schema.XmlSchemaCollection Schemas { get { throw null; } }
1185         public object SchemaType { get { throw null; } }
1186         public System.Xml.ValidationType ValidationType { get { throw null; } set { } }
1187         public override string Value { get { throw null; } }
1188         public override string XmlLang { get { throw null; } }
1189         public System.Xml.XmlResolver XmlResolver { set { } }
1190         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
1191         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Close()1192         public override void Close() { }
GetAttribute(int i)1193         public override string GetAttribute(int i) { throw null; }
GetAttribute(string name)1194         public override string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)1195         public override string GetAttribute(string localName, string namespaceURI) { throw null; }
HasLineInfo()1196         public bool HasLineInfo() { throw null; }
LookupNamespace(string prefix)1197         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int i)1198         public override void MoveToAttribute(int i) { }
MoveToAttribute(string name)1199         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string localName, string namespaceURI)1200         public override bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToElement()1201         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()1202         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()1203         public override bool MoveToNextAttribute() { throw null; }
Read()1204         public override bool Read() { throw null; }
ReadAttributeValue()1205         public override bool ReadAttributeValue() { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)1206         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)1207         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)1208         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)1209         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()1210         public override string ReadString() { throw null; }
ReadTypedValue()1211         public object ReadTypedValue() { throw null; }
ResolveEntity()1212         public override void ResolveEntity() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1213         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)1214         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)1215         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
1216     }
1217     public partial class XmlWhitespace : System.Xml.XmlCharacterData
1218     {
XmlWhitespace(string strData, System.Xml.XmlDocument doc)1219         protected internal XmlWhitespace(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
1220         public override string LocalName { get { throw null; } }
1221         public override string Name { get { throw null; } }
1222         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1223         public override System.Xml.XmlNode ParentNode { get { throw null; } }
1224         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)1225         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)1226         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)1227         public override void WriteTo(System.Xml.XmlWriter w) { }
1228     }
1229     public abstract partial class XmlWriter : System.IDisposable
1230     {
XmlWriter()1231         protected XmlWriter() { }
1232         public virtual System.Xml.XmlWriterSettings Settings { get { throw null; } }
1233         public abstract System.Xml.WriteState WriteState { get; }
1234         public virtual string XmlLang { get { throw null; } }
1235         public virtual System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1236         public virtual void Close() { }
Create(System.IO.Stream output)1237         public static System.Xml.XmlWriter Create(System.IO.Stream output) { throw null; }
Create(System.IO.Stream output, System.Xml.XmlWriterSettings settings)1238         public static System.Xml.XmlWriter Create(System.IO.Stream output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.IO.TextWriter output)1239         public static System.Xml.XmlWriter Create(System.IO.TextWriter output) { throw null; }
Create(System.IO.TextWriter output, System.Xml.XmlWriterSettings settings)1240         public static System.Xml.XmlWriter Create(System.IO.TextWriter output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(string outputFileName)1241         public static System.Xml.XmlWriter Create(string outputFileName) { throw null; }
Create(string outputFileName, System.Xml.XmlWriterSettings settings)1242         public static System.Xml.XmlWriter Create(string outputFileName, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.Text.StringBuilder output)1243         public static System.Xml.XmlWriter Create(System.Text.StringBuilder output) { throw null; }
Create(System.Text.StringBuilder output, System.Xml.XmlWriterSettings settings)1244         public static System.Xml.XmlWriter Create(System.Text.StringBuilder output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.Xml.XmlWriter output)1245         public static System.Xml.XmlWriter Create(System.Xml.XmlWriter output) { throw null; }
Create(System.Xml.XmlWriter output, System.Xml.XmlWriterSettings settings)1246         public static System.Xml.XmlWriter Create(System.Xml.XmlWriter output, System.Xml.XmlWriterSettings settings) { throw null; }
Dispose()1247         public void Dispose() { }
Dispose(bool disposing)1248         protected virtual void Dispose(bool disposing) { }
Flush()1249         public abstract void Flush();
FlushAsync()1250         public virtual System.Threading.Tasks.Task FlushAsync() { throw null; }
LookupPrefix(string ns)1251         public abstract string LookupPrefix(string ns);
WriteAttributes(System.Xml.XmlReader reader, bool defattr)1252         public virtual void WriteAttributes(System.Xml.XmlReader reader, bool defattr) { }
WriteAttributesAsync(System.Xml.XmlReader reader, bool defattr)1253         public virtual System.Threading.Tasks.Task WriteAttributesAsync(System.Xml.XmlReader reader, bool defattr) { throw null; }
WriteAttributeString(string localName, string value)1254         public void WriteAttributeString(string localName, string value) { }
WriteAttributeString(string localName, string ns, string value)1255         public void WriteAttributeString(string localName, string ns, string value) { }
WriteAttributeString(string prefix, string localName, string ns, string value)1256         public void WriteAttributeString(string prefix, string localName, string ns, string value) { }
WriteAttributeStringAsync(string prefix, string localName, string ns, string value)1257         public System.Threading.Tasks.Task WriteAttributeStringAsync(string prefix, string localName, string ns, string value) { throw null; }
WriteBase64(byte[] buffer, int index, int count)1258         public abstract void WriteBase64(byte[] buffer, int index, int count);
WriteBase64Async(byte[] buffer, int index, int count)1259         public virtual System.Threading.Tasks.Task WriteBase64Async(byte[] buffer, int index, int count) { throw null; }
WriteBinHex(byte[] buffer, int index, int count)1260         public virtual void WriteBinHex(byte[] buffer, int index, int count) { }
WriteBinHexAsync(byte[] buffer, int index, int count)1261         public virtual System.Threading.Tasks.Task WriteBinHexAsync(byte[] buffer, int index, int count) { throw null; }
WriteCData(string text)1262         public abstract void WriteCData(string text);
WriteCDataAsync(string text)1263         public virtual System.Threading.Tasks.Task WriteCDataAsync(string text) { throw null; }
WriteCharEntity(char ch)1264         public abstract void WriteCharEntity(char ch);
WriteCharEntityAsync(char ch)1265         public virtual System.Threading.Tasks.Task WriteCharEntityAsync(char ch) { throw null; }
WriteChars(char[] buffer, int index, int count)1266         public abstract void WriteChars(char[] buffer, int index, int count);
WriteCharsAsync(char[] buffer, int index, int count)1267         public virtual System.Threading.Tasks.Task WriteCharsAsync(char[] buffer, int index, int count) { throw null; }
WriteComment(string text)1268         public abstract void WriteComment(string text);
WriteCommentAsync(string text)1269         public virtual System.Threading.Tasks.Task WriteCommentAsync(string text) { throw null; }
WriteDocType(string name, string pubid, string sysid, string subset)1270         public abstract void WriteDocType(string name, string pubid, string sysid, string subset);
WriteDocTypeAsync(string name, string pubid, string sysid, string subset)1271         public virtual System.Threading.Tasks.Task WriteDocTypeAsync(string name, string pubid, string sysid, string subset) { throw null; }
WriteElementString(string localName, string value)1272         public void WriteElementString(string localName, string value) { }
WriteElementString(string localName, string ns, string value)1273         public void WriteElementString(string localName, string ns, string value) { }
WriteElementString(string prefix, string localName, string ns, string value)1274         public void WriteElementString(string prefix, string localName, string ns, string value) { }
WriteElementStringAsync(string prefix, string localName, string ns, string value)1275         public System.Threading.Tasks.Task WriteElementStringAsync(string prefix, string localName, string ns, string value) { throw null; }
WriteEndAttribute()1276         public abstract void WriteEndAttribute();
WriteEndAttributeAsync()1277         protected internal virtual System.Threading.Tasks.Task WriteEndAttributeAsync() { throw null; }
WriteEndDocument()1278         public abstract void WriteEndDocument();
WriteEndDocumentAsync()1279         public virtual System.Threading.Tasks.Task WriteEndDocumentAsync() { throw null; }
WriteEndElement()1280         public abstract void WriteEndElement();
WriteEndElementAsync()1281         public virtual System.Threading.Tasks.Task WriteEndElementAsync() { throw null; }
WriteEntityRef(string name)1282         public abstract void WriteEntityRef(string name);
WriteEntityRefAsync(string name)1283         public virtual System.Threading.Tasks.Task WriteEntityRefAsync(string name) { throw null; }
WriteFullEndElement()1284         public abstract void WriteFullEndElement();
WriteFullEndElementAsync()1285         public virtual System.Threading.Tasks.Task WriteFullEndElementAsync() { throw null; }
WriteName(string name)1286         public virtual void WriteName(string name) { }
WriteNameAsync(string name)1287         public virtual System.Threading.Tasks.Task WriteNameAsync(string name) { throw null; }
WriteNmToken(string name)1288         public virtual void WriteNmToken(string name) { }
WriteNmTokenAsync(string name)1289         public virtual System.Threading.Tasks.Task WriteNmTokenAsync(string name) { throw null; }
WriteNode(System.Xml.XmlReader reader, bool defattr)1290         public virtual void WriteNode(System.Xml.XmlReader reader, bool defattr) { }
WriteNode(System.Xml.XPath.XPathNavigator navigator, bool defattr)1291         public virtual void WriteNode(System.Xml.XPath.XPathNavigator navigator, bool defattr) { }
WriteNodeAsync(System.Xml.XmlReader reader, bool defattr)1292         public virtual System.Threading.Tasks.Task WriteNodeAsync(System.Xml.XmlReader reader, bool defattr) { throw null; }
WriteNodeAsync(System.Xml.XPath.XPathNavigator navigator, bool defattr)1293         public virtual System.Threading.Tasks.Task WriteNodeAsync(System.Xml.XPath.XPathNavigator navigator, bool defattr) { throw null; }
WriteProcessingInstruction(string name, string text)1294         public abstract void WriteProcessingInstruction(string name, string text);
WriteProcessingInstructionAsync(string name, string text)1295         public virtual System.Threading.Tasks.Task WriteProcessingInstructionAsync(string name, string text) { throw null; }
WriteQualifiedName(string localName, string ns)1296         public virtual void WriteQualifiedName(string localName, string ns) { }
WriteQualifiedNameAsync(string localName, string ns)1297         public virtual System.Threading.Tasks.Task WriteQualifiedNameAsync(string localName, string ns) { throw null; }
WriteRaw(char[] buffer, int index, int count)1298         public abstract void WriteRaw(char[] buffer, int index, int count);
WriteRaw(string data)1299         public abstract void WriteRaw(string data);
WriteRawAsync(char[] buffer, int index, int count)1300         public virtual System.Threading.Tasks.Task WriteRawAsync(char[] buffer, int index, int count) { throw null; }
WriteRawAsync(string data)1301         public virtual System.Threading.Tasks.Task WriteRawAsync(string data) { throw null; }
WriteStartAttribute(string localName)1302         public void WriteStartAttribute(string localName) { }
WriteStartAttribute(string localName, string ns)1303         public void WriteStartAttribute(string localName, string ns) { }
WriteStartAttribute(string prefix, string localName, string ns)1304         public abstract void WriteStartAttribute(string prefix, string localName, string ns);
WriteStartAttributeAsync(string prefix, string localName, string ns)1305         protected internal virtual System.Threading.Tasks.Task WriteStartAttributeAsync(string prefix, string localName, string ns) { throw null; }
WriteStartDocument()1306         public abstract void WriteStartDocument();
WriteStartDocument(bool standalone)1307         public abstract void WriteStartDocument(bool standalone);
WriteStartDocumentAsync()1308         public virtual System.Threading.Tasks.Task WriteStartDocumentAsync() { throw null; }
WriteStartDocumentAsync(bool standalone)1309         public virtual System.Threading.Tasks.Task WriteStartDocumentAsync(bool standalone) { throw null; }
WriteStartElement(string localName)1310         public void WriteStartElement(string localName) { }
WriteStartElement(string localName, string ns)1311         public void WriteStartElement(string localName, string ns) { }
WriteStartElement(string prefix, string localName, string ns)1312         public abstract void WriteStartElement(string prefix, string localName, string ns);
WriteStartElementAsync(string prefix, string localName, string ns)1313         public virtual System.Threading.Tasks.Task WriteStartElementAsync(string prefix, string localName, string ns) { throw null; }
WriteString(string text)1314         public abstract void WriteString(string text);
WriteStringAsync(string text)1315         public virtual System.Threading.Tasks.Task WriteStringAsync(string text) { throw null; }
WriteSurrogateCharEntity(char lowChar, char highChar)1316         public abstract void WriteSurrogateCharEntity(char lowChar, char highChar);
WriteSurrogateCharEntityAsync(char lowChar, char highChar)1317         public virtual System.Threading.Tasks.Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) { throw null; }
WriteValue(bool value)1318         public virtual void WriteValue(bool value) { }
WriteValue(System.DateTime value)1319         public virtual void WriteValue(System.DateTime value) { }
WriteValue(System.DateTimeOffset value)1320         public virtual void WriteValue(System.DateTimeOffset value) { }
WriteValue(decimal value)1321         public virtual void WriteValue(decimal value) { }
WriteValue(double value)1322         public virtual void WriteValue(double value) { }
WriteValue(int value)1323         public virtual void WriteValue(int value) { }
WriteValue(long value)1324         public virtual void WriteValue(long value) { }
WriteValue(object value)1325         public virtual void WriteValue(object value) { }
WriteValue(float value)1326         public virtual void WriteValue(float value) { }
WriteValue(string value)1327         public virtual void WriteValue(string value) { }
WriteWhitespace(string ws)1328         public abstract void WriteWhitespace(string ws);
WriteWhitespaceAsync(string ws)1329         public virtual System.Threading.Tasks.Task WriteWhitespaceAsync(string ws) { throw null; }
1330     }
1331     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
1332     public sealed partial class XmlWriterSettings
1333     {
XmlWriterSettings()1334         public XmlWriterSettings() { }
1335         public bool Async { get { throw null; } set { } }
1336         public bool CheckCharacters { get { throw null; } set { } }
1337         public bool CloseOutput { get { throw null; } set { } }
1338         public System.Xml.ConformanceLevel ConformanceLevel { get { throw null; } set { } }
1339         public bool DoNotEscapeUriAttributes { get { throw null; } set { } }
1340         public System.Text.Encoding Encoding { get { throw null; } set { } }
1341         public bool Indent { get { throw null; } set { } }
1342         public string IndentChars { get { throw null; } set { } }
1343         public System.Xml.NamespaceHandling NamespaceHandling { get { throw null; } set { } }
1344         public string NewLineChars { get { throw null; } set { } }
1345         public System.Xml.NewLineHandling NewLineHandling { get { throw null; } set { } }
1346         public bool NewLineOnAttributes { get { throw null; } set { } }
1347         public bool OmitXmlDeclaration { get { throw null; } set { } }
1348         public System.Xml.XmlOutputMethod OutputMethod { get { throw null; } }
1349         public bool WriteEndDocumentOnClose { get { throw null; } set { } }
Clone()1350         public System.Xml.XmlWriterSettings Clone() { throw null; }
Reset()1351         public void Reset() { }
1352     }
1353     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1354     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
1355     public partial class XmlXapResolver : System.Xml.XmlResolver
1356     {
1357         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1358         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
XmlXapResolver()1359         public XmlXapResolver() { }
1360         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1361         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
1362         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1363         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
RegisterApplicationResourceStreamResolver(System.Xml.IApplicationResourceStreamResolver appStreamResolver)1364         public static void RegisterApplicationResourceStreamResolver(System.Xml.IApplicationResourceStreamResolver appStreamResolver) { }
1365     }
1366 }
1367 namespace System.Xml.Resolvers
1368 {
1369     [System.FlagsAttribute]
1370     public enum XmlKnownDtds
1371     {
1372         All = 65535,
1373         None = 0,
1374         Rss091 = 2,
1375         Xhtml10 = 1,
1376     }
1377     public partial class XmlPreloadedResolver : System.Xml.XmlResolver
1378     {
XmlPreloadedResolver()1379         public XmlPreloadedResolver() { }
XmlPreloadedResolver(System.Xml.Resolvers.XmlKnownDtds preloadedDtds)1380         public XmlPreloadedResolver(System.Xml.Resolvers.XmlKnownDtds preloadedDtds) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver)1381         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds)1382         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds, System.Collections.Generic.IEqualityComparer<System.Uri> uriComparer)1383         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds, System.Collections.Generic.IEqualityComparer<System.Uri> uriComparer) { }
1384         public override System.Net.ICredentials Credentials { set { } }
1385         public System.Collections.Generic.IEnumerable<System.Uri> PreloadedUris { get { throw null; } }
Add(System.Uri uri, byte[] value)1386         public void Add(System.Uri uri, byte[] value) { }
Add(System.Uri uri, byte[] value, int offset, int count)1387         public void Add(System.Uri uri, byte[] value, int offset, int count) { }
Add(System.Uri uri, System.IO.Stream value)1388         public void Add(System.Uri uri, System.IO.Stream value) { }
Add(System.Uri uri, string value)1389         public void Add(System.Uri uri, string value) { }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1390         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1391         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
Remove(System.Uri uri)1392         public void Remove(System.Uri uri) { }
ResolveUri(System.Uri baseUri, string relativeUri)1393         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
SupportsType(System.Uri absoluteUri, System.Type type)1394         public override bool SupportsType(System.Uri absoluteUri, System.Type type) { throw null; }
1395     }
1396 }
1397 namespace System.Xml.Schema
1398 {
1399     public partial interface IXmlSchemaInfo
1400     {
1401         bool IsDefault { get; }
1402         bool IsNil { get; }
1403         System.Xml.Schema.XmlSchemaSimpleType MemberType { get; }
1404         System.Xml.Schema.XmlSchemaAttribute SchemaAttribute { get; }
1405         System.Xml.Schema.XmlSchemaElement SchemaElement { get; }
1406         System.Xml.Schema.XmlSchemaType SchemaType { get; }
1407         System.Xml.Schema.XmlSchemaValidity Validity { get; }
1408     }
1409     public partial class ValidationEventArgs : System.EventArgs
1410     {
ValidationEventArgs()1411         internal ValidationEventArgs() { }
1412         public System.Xml.Schema.XmlSchemaException Exception { get { throw null; } }
1413         public string Message { get { throw null; } }
1414         public System.Xml.Schema.XmlSeverityType Severity { get { throw null; } }
1415     }
ValidationEventHandler(object sender, System.Xml.Schema.ValidationEventArgs e)1416     public delegate void ValidationEventHandler(object sender, System.Xml.Schema.ValidationEventArgs e);
1417     public sealed partial class XmlAtomicValue : System.Xml.XPath.XPathItem, System.ICloneable
1418     {
XmlAtomicValue()1419         internal XmlAtomicValue() { }
1420         public override bool IsNode { get { throw null; } }
1421         public override object TypedValue { get { throw null; } }
1422         public override string Value { get { throw null; } }
1423         public override bool ValueAsBoolean { get { throw null; } }
1424         public override System.DateTime ValueAsDateTime { get { throw null; } }
1425         public override double ValueAsDouble { get { throw null; } }
1426         public override int ValueAsInt { get { throw null; } }
1427         public override long ValueAsLong { get { throw null; } }
1428         public override System.Type ValueType { get { throw null; } }
1429         public override System.Xml.Schema.XmlSchemaType XmlType { get { throw null; } }
Clone()1430         public System.Xml.Schema.XmlAtomicValue Clone() { throw null; }
System.ICloneable.Clone()1431         object System.ICloneable.Clone() { throw null; }
ToString()1432         public override string ToString() { throw null; }
ValueAs(System.Type type, System.Xml.IXmlNamespaceResolver nsResolver)1433         public override object ValueAs(System.Type type, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
1434     }
1435     [System.Xml.Serialization.XmlRootAttribute("schema", Namespace="http://www.w3.org/2001/XMLSchema")]
1436     public partial class XmlSchema : System.Xml.Schema.XmlSchemaObject
1437     {
1438         public const string InstanceNamespace = "http://www.w3.org/2001/XMLSchema-instance";
1439         public const string Namespace = "http://www.w3.org/2001/XMLSchema";
XmlSchema()1440         public XmlSchema() { }
1441         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1442         [System.Xml.Serialization.XmlAttributeAttribute("attributeFormDefault")]
1443         public System.Xml.Schema.XmlSchemaForm AttributeFormDefault { get { throw null; } set { } }
1444         [System.Xml.Serialization.XmlIgnoreAttribute]
1445         public System.Xml.Schema.XmlSchemaObjectTable AttributeGroups { get { throw null; } }
1446         [System.Xml.Serialization.XmlIgnoreAttribute]
1447         public System.Xml.Schema.XmlSchemaObjectTable Attributes { get { throw null; } }
1448         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1449         [System.Xml.Serialization.XmlAttributeAttribute("blockDefault")]
1450         public System.Xml.Schema.XmlSchemaDerivationMethod BlockDefault { get { throw null; } set { } }
1451         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1452         [System.Xml.Serialization.XmlAttributeAttribute("elementFormDefault")]
1453         public System.Xml.Schema.XmlSchemaForm ElementFormDefault { get { throw null; } set { } }
1454         [System.Xml.Serialization.XmlIgnoreAttribute]
1455         public System.Xml.Schema.XmlSchemaObjectTable Elements { get { throw null; } }
1456         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1457         [System.Xml.Serialization.XmlAttributeAttribute("finalDefault")]
1458         public System.Xml.Schema.XmlSchemaDerivationMethod FinalDefault { get { throw null; } set { } }
1459         [System.Xml.Serialization.XmlIgnoreAttribute]
1460         public System.Xml.Schema.XmlSchemaObjectTable Groups { get { throw null; } }
1461         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1462         public string Id { get { throw null; } set { } }
1463         [System.Xml.Serialization.XmlElementAttribute("import", typeof(System.Xml.Schema.XmlSchemaImport))]
1464         [System.Xml.Serialization.XmlElementAttribute("include", typeof(System.Xml.Schema.XmlSchemaInclude))]
1465         [System.Xml.Serialization.XmlElementAttribute("redefine", typeof(System.Xml.Schema.XmlSchemaRedefine))]
1466         public System.Xml.Schema.XmlSchemaObjectCollection Includes { get { throw null; } }
1467         [System.Xml.Serialization.XmlIgnoreAttribute]
1468         public bool IsCompiled { get { throw null; } }
1469         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1470         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1471         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroup))]
1472         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
1473         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1474         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroup))]
1475         [System.Xml.Serialization.XmlElementAttribute("notation", typeof(System.Xml.Schema.XmlSchemaNotation))]
1476         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
1477         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1478         [System.Xml.Serialization.XmlIgnoreAttribute]
1479         public System.Xml.Schema.XmlSchemaObjectTable Notations { get { throw null; } }
1480         [System.Xml.Serialization.XmlIgnoreAttribute]
1481         public System.Xml.Schema.XmlSchemaObjectTable SchemaTypes { get { throw null; } }
1482         [System.Xml.Serialization.XmlAttributeAttribute("targetNamespace", DataType="anyURI")]
1483         public string TargetNamespace { get { throw null; } set { } }
1484         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1485         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1486         [System.Xml.Serialization.XmlAttributeAttribute("version", DataType="token")]
1487         public string Version { get { throw null; } set { } }
1488         [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler)1489         public void Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler) { }
1490         [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlResolver resolver)1491         public void Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlResolver resolver) { }
Read(System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler validationEventHandler)1492         public static System.Xml.Schema.XmlSchema Read(System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Read(System.IO.TextReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler)1493         public static System.Xml.Schema.XmlSchema Read(System.IO.TextReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Read(System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler)1494         public static System.Xml.Schema.XmlSchema Read(System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Write(System.IO.Stream stream)1495         public void Write(System.IO.Stream stream) { }
Write(System.IO.Stream stream, System.Xml.XmlNamespaceManager namespaceManager)1496         public void Write(System.IO.Stream stream, System.Xml.XmlNamespaceManager namespaceManager) { }
Write(System.IO.TextWriter writer)1497         public void Write(System.IO.TextWriter writer) { }
Write(System.IO.TextWriter writer, System.Xml.XmlNamespaceManager namespaceManager)1498         public void Write(System.IO.TextWriter writer, System.Xml.XmlNamespaceManager namespaceManager) { }
Write(System.Xml.XmlWriter writer)1499         public void Write(System.Xml.XmlWriter writer) { }
Write(System.Xml.XmlWriter writer, System.Xml.XmlNamespaceManager namespaceManager)1500         public void Write(System.Xml.XmlWriter writer, System.Xml.XmlNamespaceManager namespaceManager) { }
1501     }
1502     public partial class XmlSchemaAll : System.Xml.Schema.XmlSchemaGroupBase
1503     {
XmlSchemaAll()1504         public XmlSchemaAll() { }
1505         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1506         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1507     }
1508     public partial class XmlSchemaAnnotated : System.Xml.Schema.XmlSchemaObject
1509     {
XmlSchemaAnnotated()1510         public XmlSchemaAnnotated() { }
1511         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1512         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1513         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1514         public string Id { get { throw null; } set { } }
1515         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1516         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1517     }
1518     public partial class XmlSchemaAnnotation : System.Xml.Schema.XmlSchemaObject
1519     {
XmlSchemaAnnotation()1520         public XmlSchemaAnnotation() { }
1521         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1522         public string Id { get { throw null; } set { } }
1523         [System.Xml.Serialization.XmlElementAttribute("appinfo", typeof(System.Xml.Schema.XmlSchemaAppInfo))]
1524         [System.Xml.Serialization.XmlElementAttribute("documentation", typeof(System.Xml.Schema.XmlSchemaDocumentation))]
1525         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1526         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1527         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1528     }
1529     public partial class XmlSchemaAny : System.Xml.Schema.XmlSchemaParticle
1530     {
XmlSchemaAny()1531         public XmlSchemaAny() { }
1532         [System.Xml.Serialization.XmlAttributeAttribute("namespace")]
1533         public string Namespace { get { throw null; } set { } }
1534         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaContentProcessing)(0))]
1535         [System.Xml.Serialization.XmlAttributeAttribute("processContents")]
1536         public System.Xml.Schema.XmlSchemaContentProcessing ProcessContents { get { throw null; } set { } }
1537     }
1538     public partial class XmlSchemaAnyAttribute : System.Xml.Schema.XmlSchemaAnnotated
1539     {
XmlSchemaAnyAttribute()1540         public XmlSchemaAnyAttribute() { }
1541         [System.Xml.Serialization.XmlAttributeAttribute("namespace")]
1542         public string Namespace { get { throw null; } set { } }
1543         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaContentProcessing)(0))]
1544         [System.Xml.Serialization.XmlAttributeAttribute("processContents")]
1545         public System.Xml.Schema.XmlSchemaContentProcessing ProcessContents { get { throw null; } set { } }
1546     }
1547     public partial class XmlSchemaAppInfo : System.Xml.Schema.XmlSchemaObject
1548     {
XmlSchemaAppInfo()1549         public XmlSchemaAppInfo() { }
1550         [System.Xml.Serialization.XmlAnyElementAttribute]
1551         [System.Xml.Serialization.XmlTextAttribute]
1552         public System.Xml.XmlNode[] Markup { get { throw null; } set { } }
1553         [System.Xml.Serialization.XmlAttributeAttribute("source", DataType="anyURI")]
1554         public string Source { get { throw null; } set { } }
1555     }
1556     public partial class XmlSchemaAttribute : System.Xml.Schema.XmlSchemaAnnotated
1557     {
XmlSchemaAttribute()1558         public XmlSchemaAttribute() { }
1559         [System.Xml.Serialization.XmlIgnoreAttribute]
1560         public System.Xml.Schema.XmlSchemaSimpleType AttributeSchemaType { get { throw null; } }
1561         [System.ObsoleteAttribute("This property has been deprecated. Please use AttributeSchemaType property that returns a strongly typed attribute type. http://go.microsoft.com/fwlink/?linkid=14202")]
1562         [System.Xml.Serialization.XmlIgnoreAttribute]
1563         public object AttributeType { get { throw null; } }
1564         [System.ComponentModel.DefaultValueAttribute(null)]
1565         [System.Xml.Serialization.XmlAttributeAttribute("default")]
1566         public string DefaultValue { get { throw null; } set { } }
1567         [System.ComponentModel.DefaultValueAttribute(null)]
1568         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1569         public string FixedValue { get { throw null; } set { } }
1570         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1571         [System.Xml.Serialization.XmlAttributeAttribute("form")]
1572         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
1573         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1574         public string Name { get { throw null; } set { } }
1575         [System.Xml.Serialization.XmlIgnoreAttribute]
1576         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1577         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1578         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1579         [System.Xml.Serialization.XmlElementAttribute("simpleType")]
1580         public System.Xml.Schema.XmlSchemaSimpleType SchemaType { get { throw null; } set { } }
1581         [System.Xml.Serialization.XmlAttributeAttribute("type")]
1582         public System.Xml.XmlQualifiedName SchemaTypeName { get { throw null; } set { } }
1583         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaUse)(0))]
1584         [System.Xml.Serialization.XmlAttributeAttribute("use")]
1585         public System.Xml.Schema.XmlSchemaUse Use { get { throw null; } set { } }
1586     }
1587     public partial class XmlSchemaAttributeGroup : System.Xml.Schema.XmlSchemaAnnotated
1588     {
XmlSchemaAttributeGroup()1589         public XmlSchemaAttributeGroup() { }
1590         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1591         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1592         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1593         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1594         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1595         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1596         public string Name { get { throw null; } set { } }
1597         [System.Xml.Serialization.XmlIgnoreAttribute]
1598         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1599         [System.Xml.Serialization.XmlIgnoreAttribute]
1600         public System.Xml.Schema.XmlSchemaAttributeGroup RedefinedAttributeGroup { get { throw null; } }
1601     }
1602     public partial class XmlSchemaAttributeGroupRef : System.Xml.Schema.XmlSchemaAnnotated
1603     {
XmlSchemaAttributeGroupRef()1604         public XmlSchemaAttributeGroupRef() { }
1605         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1606         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1607     }
1608     public partial class XmlSchemaChoice : System.Xml.Schema.XmlSchemaGroupBase
1609     {
XmlSchemaChoice()1610         public XmlSchemaChoice() { }
1611         [System.Xml.Serialization.XmlElementAttribute("any", typeof(System.Xml.Schema.XmlSchemaAny))]
1612         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1613         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1614         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1615         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1616         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1617     }
1618     [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
1619     public sealed partial class XmlSchemaCollection : System.Collections.ICollection, System.Collections.IEnumerable
1620     {
XmlSchemaCollection()1621         public XmlSchemaCollection() { }
XmlSchemaCollection(System.Xml.XmlNameTable nametable)1622         public XmlSchemaCollection(System.Xml.XmlNameTable nametable) { }
1623         public int Count { get { throw null; } }
1624         public System.Xml.Schema.XmlSchema this[string ns] { get { throw null; } }
1625         public System.Xml.XmlNameTable NameTable { get { throw null; } }
1626         int System.Collections.ICollection.Count { get { throw null; } }
1627         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1628         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1629         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Add(string ns, string uri)1630         public System.Xml.Schema.XmlSchema Add(string ns, string uri) { throw null; }
Add(string ns, System.Xml.XmlReader reader)1631         public System.Xml.Schema.XmlSchema Add(string ns, System.Xml.XmlReader reader) { throw null; }
Add(string ns, System.Xml.XmlReader reader, System.Xml.XmlResolver resolver)1632         public System.Xml.Schema.XmlSchema Add(string ns, System.Xml.XmlReader reader, System.Xml.XmlResolver resolver) { throw null; }
Add(System.Xml.Schema.XmlSchema schema)1633         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema) { throw null; }
Add(System.Xml.Schema.XmlSchema schema, System.Xml.XmlResolver resolver)1634         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema, System.Xml.XmlResolver resolver) { throw null; }
Add(System.Xml.Schema.XmlSchemaCollection schema)1635         public void Add(System.Xml.Schema.XmlSchemaCollection schema) { }
Contains(string ns)1636         public bool Contains(string ns) { throw null; }
Contains(System.Xml.Schema.XmlSchema schema)1637         public bool Contains(System.Xml.Schema.XmlSchema schema) { throw null; }
CopyTo(System.Xml.Schema.XmlSchema[] array, int index)1638         public void CopyTo(System.Xml.Schema.XmlSchema[] array, int index) { }
GetEnumerator()1639         public System.Xml.Schema.XmlSchemaCollectionEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1640         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1641         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
1642     }
1643     public sealed partial class XmlSchemaCollectionEnumerator : System.Collections.IEnumerator
1644     {
XmlSchemaCollectionEnumerator()1645         internal XmlSchemaCollectionEnumerator() { }
1646         public System.Xml.Schema.XmlSchema Current { get { throw null; } }
1647         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()1648         public bool MoveNext() { throw null; }
System.Collections.IEnumerator.MoveNext()1649         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()1650         void System.Collections.IEnumerator.Reset() { }
1651     }
1652     public sealed partial class XmlSchemaCompilationSettings
1653     {
XmlSchemaCompilationSettings()1654         public XmlSchemaCompilationSettings() { }
1655         public bool EnableUpaCheck { get { throw null; } set { } }
1656     }
1657     public partial class XmlSchemaComplexContent : System.Xml.Schema.XmlSchemaContentModel
1658     {
XmlSchemaComplexContent()1659         public XmlSchemaComplexContent() { }
1660         [System.Xml.Serialization.XmlElementAttribute("extension", typeof(System.Xml.Schema.XmlSchemaComplexContentExtension))]
1661         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaComplexContentRestriction))]
1662         public override System.Xml.Schema.XmlSchemaContent Content { get { throw null; } set { } }
1663         [System.Xml.Serialization.XmlAttributeAttribute("mixed")]
1664         public bool IsMixed { get { throw null; } set { } }
1665     }
1666     public partial class XmlSchemaComplexContentExtension : System.Xml.Schema.XmlSchemaContent
1667     {
XmlSchemaComplexContentExtension()1668         public XmlSchemaComplexContentExtension() { }
1669         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1670         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1671         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1672         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1673         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1674         [System.Xml.Serialization.XmlAttributeAttribute("base")]
1675         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
1676         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1677         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1678         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1679         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1680         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1681     }
1682     public partial class XmlSchemaComplexContentRestriction : System.Xml.Schema.XmlSchemaContent
1683     {
XmlSchemaComplexContentRestriction()1684         public XmlSchemaComplexContentRestriction() { }
1685         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1686         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1687         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1688         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1689         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1690         [System.Xml.Serialization.XmlAttributeAttribute("base")]
1691         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
1692         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1693         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1694         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1695         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1696         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1697     }
1698     public partial class XmlSchemaComplexType : System.Xml.Schema.XmlSchemaType
1699     {
XmlSchemaComplexType()1700         public XmlSchemaComplexType() { }
1701         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1702         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1703         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1704         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1705         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1706         [System.Xml.Serialization.XmlIgnoreAttribute]
1707         public System.Xml.Schema.XmlSchemaObjectTable AttributeUses { get { throw null; } }
1708         [System.Xml.Serialization.XmlIgnoreAttribute]
1709         public System.Xml.Schema.XmlSchemaAnyAttribute AttributeWildcard { get { throw null; } }
1710         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1711         [System.Xml.Serialization.XmlAttributeAttribute("block")]
1712         public System.Xml.Schema.XmlSchemaDerivationMethod Block { get { throw null; } set { } }
1713         [System.Xml.Serialization.XmlIgnoreAttribute]
1714         public System.Xml.Schema.XmlSchemaDerivationMethod BlockResolved { get { throw null; } }
1715         [System.Xml.Serialization.XmlElementAttribute("complexContent", typeof(System.Xml.Schema.XmlSchemaComplexContent))]
1716         [System.Xml.Serialization.XmlElementAttribute("simpleContent", typeof(System.Xml.Schema.XmlSchemaSimpleContent))]
1717         public System.Xml.Schema.XmlSchemaContentModel ContentModel { get { throw null; } set { } }
1718         [System.Xml.Serialization.XmlIgnoreAttribute]
1719         public System.Xml.Schema.XmlSchemaContentType ContentType { get { throw null; } }
1720         [System.Xml.Serialization.XmlIgnoreAttribute]
1721         public System.Xml.Schema.XmlSchemaParticle ContentTypeParticle { get { throw null; } }
1722         [System.ComponentModel.DefaultValueAttribute(false)]
1723         [System.Xml.Serialization.XmlAttributeAttribute("abstract")]
1724         public bool IsAbstract { get { throw null; } set { } }
1725         [System.ComponentModel.DefaultValueAttribute(false)]
1726         [System.Xml.Serialization.XmlAttributeAttribute("mixed")]
1727         public override bool IsMixed { get { throw null; } set { } }
1728         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1729         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1730         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1731         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1732         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1733     }
1734     public abstract partial class XmlSchemaContent : System.Xml.Schema.XmlSchemaAnnotated
1735     {
XmlSchemaContent()1736         protected XmlSchemaContent() { }
1737     }
1738     public abstract partial class XmlSchemaContentModel : System.Xml.Schema.XmlSchemaAnnotated
1739     {
XmlSchemaContentModel()1740         protected XmlSchemaContentModel() { }
1741         [System.Xml.Serialization.XmlIgnoreAttribute]
1742         public abstract System.Xml.Schema.XmlSchemaContent Content { get; set; }
1743     }
1744     public enum XmlSchemaContentProcessing
1745     {
1746         [System.Xml.Serialization.XmlEnumAttribute("lax")]
1747         Lax = 2,
1748         [System.Xml.Serialization.XmlIgnoreAttribute]
1749         None = 0,
1750         [System.Xml.Serialization.XmlEnumAttribute("skip")]
1751         Skip = 1,
1752         [System.Xml.Serialization.XmlEnumAttribute("strict")]
1753         Strict = 3,
1754     }
1755     public enum XmlSchemaContentType
1756     {
1757         ElementOnly = 2,
1758         Empty = 1,
1759         Mixed = 3,
1760         TextOnly = 0,
1761     }
1762     public abstract partial class XmlSchemaDatatype
1763     {
XmlSchemaDatatype()1764         protected XmlSchemaDatatype() { }
1765         public abstract System.Xml.XmlTokenizedType TokenizedType { get; }
1766         public virtual System.Xml.Schema.XmlTypeCode TypeCode { get { throw null; } }
1767         public abstract System.Type ValueType { get; }
1768         public virtual System.Xml.Schema.XmlSchemaDatatypeVariety Variety { get { throw null; } }
ChangeType(object value, System.Type targetType)1769         public virtual object ChangeType(object value, System.Type targetType) { throw null; }
ChangeType(object value, System.Type targetType, System.Xml.IXmlNamespaceResolver namespaceResolver)1770         public virtual object ChangeType(object value, System.Type targetType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype datatype)1771         public virtual bool IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype datatype) { throw null; }
ParseValue(string s, System.Xml.XmlNameTable nameTable, System.Xml.IXmlNamespaceResolver nsmgr)1772         public abstract object ParseValue(string s, System.Xml.XmlNameTable nameTable, System.Xml.IXmlNamespaceResolver nsmgr);
1773     }
1774     public enum XmlSchemaDatatypeVariety
1775     {
1776         Atomic = 0,
1777         List = 1,
1778         Union = 2,
1779     }
1780     [System.FlagsAttribute]
1781     public enum XmlSchemaDerivationMethod
1782     {
1783         [System.Xml.Serialization.XmlEnumAttribute("#all")]
1784         All = 255,
1785         [System.Xml.Serialization.XmlEnumAttribute("")]
1786         Empty = 0,
1787         [System.Xml.Serialization.XmlEnumAttribute("extension")]
1788         Extension = 2,
1789         [System.Xml.Serialization.XmlEnumAttribute("list")]
1790         List = 8,
1791         [System.Xml.Serialization.XmlIgnoreAttribute]
1792         None = 256,
1793         [System.Xml.Serialization.XmlEnumAttribute("restriction")]
1794         Restriction = 4,
1795         [System.Xml.Serialization.XmlEnumAttribute("substitution")]
1796         Substitution = 1,
1797         [System.Xml.Serialization.XmlEnumAttribute("union")]
1798         Union = 16,
1799     }
1800     public partial class XmlSchemaDocumentation : System.Xml.Schema.XmlSchemaObject
1801     {
XmlSchemaDocumentation()1802         public XmlSchemaDocumentation() { }
1803         [System.Xml.Serialization.XmlAttributeAttribute("xml:lang")]
1804         public string Language { get { throw null; } set { } }
1805         [System.Xml.Serialization.XmlAnyElementAttribute]
1806         [System.Xml.Serialization.XmlTextAttribute]
1807         public System.Xml.XmlNode[] Markup { get { throw null; } set { } }
1808         [System.Xml.Serialization.XmlAttributeAttribute("source", DataType="anyURI")]
1809         public string Source { get { throw null; } set { } }
1810     }
1811     public partial class XmlSchemaElement : System.Xml.Schema.XmlSchemaParticle
1812     {
XmlSchemaElement()1813         public XmlSchemaElement() { }
1814         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1815         [System.Xml.Serialization.XmlAttributeAttribute("block")]
1816         public System.Xml.Schema.XmlSchemaDerivationMethod Block { get { throw null; } set { } }
1817         [System.Xml.Serialization.XmlIgnoreAttribute]
1818         public System.Xml.Schema.XmlSchemaDerivationMethod BlockResolved { get { throw null; } }
1819         [System.Xml.Serialization.XmlElementAttribute("key", typeof(System.Xml.Schema.XmlSchemaKey))]
1820         [System.Xml.Serialization.XmlElementAttribute("keyref", typeof(System.Xml.Schema.XmlSchemaKeyref))]
1821         [System.Xml.Serialization.XmlElementAttribute("unique", typeof(System.Xml.Schema.XmlSchemaUnique))]
1822         public System.Xml.Schema.XmlSchemaObjectCollection Constraints { get { throw null; } }
1823         [System.ComponentModel.DefaultValueAttribute(null)]
1824         [System.Xml.Serialization.XmlAttributeAttribute("default")]
1825         public string DefaultValue { get { throw null; } set { } }
1826         [System.Xml.Serialization.XmlIgnoreAttribute]
1827         public System.Xml.Schema.XmlSchemaType ElementSchemaType { get { throw null; } }
1828         [System.ObsoleteAttribute("This property has been deprecated. Please use ElementSchemaType property that returns a strongly typed element type. http://go.microsoft.com/fwlink/?linkid=14202")]
1829         [System.Xml.Serialization.XmlIgnoreAttribute]
1830         public object ElementType { get { throw null; } }
1831         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1832         [System.Xml.Serialization.XmlAttributeAttribute("final")]
1833         public System.Xml.Schema.XmlSchemaDerivationMethod Final { get { throw null; } set { } }
1834         [System.Xml.Serialization.XmlIgnoreAttribute]
1835         public System.Xml.Schema.XmlSchemaDerivationMethod FinalResolved { get { throw null; } }
1836         [System.ComponentModel.DefaultValueAttribute(null)]
1837         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1838         public string FixedValue { get { throw null; } set { } }
1839         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1840         [System.Xml.Serialization.XmlAttributeAttribute("form")]
1841         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
1842         [System.ComponentModel.DefaultValueAttribute(false)]
1843         [System.Xml.Serialization.XmlAttributeAttribute("abstract")]
1844         public bool IsAbstract { get { throw null; } set { } }
1845         [System.ComponentModel.DefaultValueAttribute(false)]
1846         [System.Xml.Serialization.XmlAttributeAttribute("nillable")]
1847         public bool IsNillable { get { throw null; } set { } }
1848         [System.ComponentModel.DefaultValueAttribute("")]
1849         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1850         public string Name { get { throw null; } set { } }
1851         [System.Xml.Serialization.XmlIgnoreAttribute]
1852         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1853         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1854         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1855         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
1856         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
1857         public System.Xml.Schema.XmlSchemaType SchemaType { get { throw null; } set { } }
1858         [System.Xml.Serialization.XmlAttributeAttribute("type")]
1859         public System.Xml.XmlQualifiedName SchemaTypeName { get { throw null; } set { } }
1860         [System.Xml.Serialization.XmlAttributeAttribute("substitutionGroup")]
1861         public System.Xml.XmlQualifiedName SubstitutionGroup { get { throw null; } set { } }
1862     }
1863     public partial class XmlSchemaEnumerationFacet : System.Xml.Schema.XmlSchemaFacet
1864     {
XmlSchemaEnumerationFacet()1865         public XmlSchemaEnumerationFacet() { }
1866     }
1867     [System.SerializableAttribute]
1868     public partial class XmlSchemaException : System.SystemException
1869     {
XmlSchemaException()1870         public XmlSchemaException() { }
XmlSchemaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1871         protected XmlSchemaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaException(string message)1872         public XmlSchemaException(string message) { }
XmlSchemaException(string message, System.Exception innerException)1873         public XmlSchemaException(string message, System.Exception innerException) { }
XmlSchemaException(string message, System.Exception innerException, int lineNumber, int linePosition)1874         public XmlSchemaException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
1875         public int LineNumber { get { throw null; } }
1876         public int LinePosition { get { throw null; } }
1877         public override string Message { get { throw null; } }
1878         public System.Xml.Schema.XmlSchemaObject SourceSchemaObject { get { throw null; } }
1879         public string SourceUri { get { throw null; } }
1880         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1881         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1882     }
1883     public abstract partial class XmlSchemaExternal : System.Xml.Schema.XmlSchemaObject
1884     {
XmlSchemaExternal()1885         protected XmlSchemaExternal() { }
1886         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1887         public string Id { get { throw null; } set { } }
1888         [System.Xml.Serialization.XmlIgnoreAttribute]
1889         public System.Xml.Schema.XmlSchema Schema { get { throw null; } set { } }
1890         [System.Xml.Serialization.XmlAttributeAttribute("schemaLocation", DataType="anyURI")]
1891         public string SchemaLocation { get { throw null; } set { } }
1892         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1893         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1894     }
1895     public abstract partial class XmlSchemaFacet : System.Xml.Schema.XmlSchemaAnnotated
1896     {
XmlSchemaFacet()1897         protected XmlSchemaFacet() { }
1898         [System.ComponentModel.DefaultValueAttribute(false)]
1899         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1900         public virtual bool IsFixed { get { throw null; } set { } }
1901         [System.Xml.Serialization.XmlAttributeAttribute("value")]
1902         public string Value { get { throw null; } set { } }
1903     }
1904     public enum XmlSchemaForm
1905     {
1906         [System.Xml.Serialization.XmlIgnoreAttribute]
1907         None = 0,
1908         [System.Xml.Serialization.XmlEnumAttribute("qualified")]
1909         Qualified = 1,
1910         [System.Xml.Serialization.XmlEnumAttribute("unqualified")]
1911         Unqualified = 2,
1912     }
1913     public partial class XmlSchemaFractionDigitsFacet : System.Xml.Schema.XmlSchemaNumericFacet
1914     {
XmlSchemaFractionDigitsFacet()1915         public XmlSchemaFractionDigitsFacet() { }
1916     }
1917     public partial class XmlSchemaGroup : System.Xml.Schema.XmlSchemaAnnotated
1918     {
XmlSchemaGroup()1919         public XmlSchemaGroup() { }
1920         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1921         public string Name { get { throw null; } set { } }
1922         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1923         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1924         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1925         public System.Xml.Schema.XmlSchemaGroupBase Particle { get { throw null; } set { } }
1926         [System.Xml.Serialization.XmlIgnoreAttribute]
1927         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1928     }
1929     public abstract partial class XmlSchemaGroupBase : System.Xml.Schema.XmlSchemaParticle
1930     {
XmlSchemaGroupBase()1931         protected XmlSchemaGroupBase() { }
1932         [System.Xml.Serialization.XmlIgnoreAttribute]
1933         public abstract System.Xml.Schema.XmlSchemaObjectCollection Items { get; }
1934     }
1935     public partial class XmlSchemaGroupRef : System.Xml.Schema.XmlSchemaParticle
1936     {
XmlSchemaGroupRef()1937         public XmlSchemaGroupRef() { }
1938         [System.Xml.Serialization.XmlIgnoreAttribute]
1939         public System.Xml.Schema.XmlSchemaGroupBase Particle { get { throw null; } }
1940         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1941         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1942     }
1943     public partial class XmlSchemaIdentityConstraint : System.Xml.Schema.XmlSchemaAnnotated
1944     {
XmlSchemaIdentityConstraint()1945         public XmlSchemaIdentityConstraint() { }
1946         [System.Xml.Serialization.XmlElementAttribute("field", typeof(System.Xml.Schema.XmlSchemaXPath))]
1947         public System.Xml.Schema.XmlSchemaObjectCollection Fields { get { throw null; } }
1948         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1949         public string Name { get { throw null; } set { } }
1950         [System.Xml.Serialization.XmlIgnoreAttribute]
1951         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1952         [System.Xml.Serialization.XmlElementAttribute("selector", typeof(System.Xml.Schema.XmlSchemaXPath))]
1953         public System.Xml.Schema.XmlSchemaXPath Selector { get { throw null; } set { } }
1954     }
1955     public partial class XmlSchemaImport : System.Xml.Schema.XmlSchemaExternal
1956     {
XmlSchemaImport()1957         public XmlSchemaImport() { }
1958         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1959         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1960         [System.Xml.Serialization.XmlAttributeAttribute("namespace", DataType="anyURI")]
1961         public string Namespace { get { throw null; } set { } }
1962     }
1963     public partial class XmlSchemaInclude : System.Xml.Schema.XmlSchemaExternal
1964     {
XmlSchemaInclude()1965         public XmlSchemaInclude() { }
1966         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1967         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1968     }
1969     public sealed partial class XmlSchemaInference
1970     {
XmlSchemaInference()1971         public XmlSchemaInference() { }
1972         public System.Xml.Schema.XmlSchemaInference.InferenceOption Occurrence { get { throw null; } set { } }
1973         public System.Xml.Schema.XmlSchemaInference.InferenceOption TypeInference { get { throw null; } set { } }
InferSchema(System.Xml.XmlReader instanceDocument)1974         public System.Xml.Schema.XmlSchemaSet InferSchema(System.Xml.XmlReader instanceDocument) { throw null; }
InferSchema(System.Xml.XmlReader instanceDocument, System.Xml.Schema.XmlSchemaSet schemas)1975         public System.Xml.Schema.XmlSchemaSet InferSchema(System.Xml.XmlReader instanceDocument, System.Xml.Schema.XmlSchemaSet schemas) { throw null; }
1976         public enum InferenceOption
1977         {
1978             Relaxed = 1,
1979             Restricted = 0,
1980         }
1981     }
1982     [System.SerializableAttribute]
1983     public partial class XmlSchemaInferenceException : System.Xml.Schema.XmlSchemaException
1984     {
XmlSchemaInferenceException()1985         public XmlSchemaInferenceException() { }
XmlSchemaInferenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1986         protected XmlSchemaInferenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaInferenceException(string message)1987         public XmlSchemaInferenceException(string message) { }
XmlSchemaInferenceException(string message, System.Exception innerException)1988         public XmlSchemaInferenceException(string message, System.Exception innerException) { }
XmlSchemaInferenceException(string message, System.Exception innerException, int lineNumber, int linePosition)1989         public XmlSchemaInferenceException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
1990         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1991         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1992     }
1993     public partial class XmlSchemaInfo : System.Xml.Schema.IXmlSchemaInfo
1994     {
XmlSchemaInfo()1995         public XmlSchemaInfo() { }
1996         public System.Xml.Schema.XmlSchemaContentType ContentType { get { throw null; } set { } }
1997         public bool IsDefault { get { throw null; } set { } }
1998         public bool IsNil { get { throw null; } set { } }
1999         public System.Xml.Schema.XmlSchemaSimpleType MemberType { get { throw null; } set { } }
2000         public System.Xml.Schema.XmlSchemaAttribute SchemaAttribute { get { throw null; } set { } }
2001         public System.Xml.Schema.XmlSchemaElement SchemaElement { get { throw null; } set { } }
2002         public System.Xml.Schema.XmlSchemaType SchemaType { get { throw null; } set { } }
2003         public System.Xml.Schema.XmlSchemaValidity Validity { get { throw null; } set { } }
2004     }
2005     public partial class XmlSchemaKey : System.Xml.Schema.XmlSchemaIdentityConstraint
2006     {
XmlSchemaKey()2007         public XmlSchemaKey() { }
2008     }
2009     public partial class XmlSchemaKeyref : System.Xml.Schema.XmlSchemaIdentityConstraint
2010     {
XmlSchemaKeyref()2011         public XmlSchemaKeyref() { }
2012         [System.Xml.Serialization.XmlAttributeAttribute("refer")]
2013         public System.Xml.XmlQualifiedName Refer { get { throw null; } set { } }
2014     }
2015     public partial class XmlSchemaLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
2016     {
XmlSchemaLengthFacet()2017         public XmlSchemaLengthFacet() { }
2018     }
2019     public partial class XmlSchemaMaxExclusiveFacet : System.Xml.Schema.XmlSchemaFacet
2020     {
XmlSchemaMaxExclusiveFacet()2021         public XmlSchemaMaxExclusiveFacet() { }
2022     }
2023     public partial class XmlSchemaMaxInclusiveFacet : System.Xml.Schema.XmlSchemaFacet
2024     {
XmlSchemaMaxInclusiveFacet()2025         public XmlSchemaMaxInclusiveFacet() { }
2026     }
2027     public partial class XmlSchemaMaxLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
2028     {
XmlSchemaMaxLengthFacet()2029         public XmlSchemaMaxLengthFacet() { }
2030     }
2031     public partial class XmlSchemaMinExclusiveFacet : System.Xml.Schema.XmlSchemaFacet
2032     {
XmlSchemaMinExclusiveFacet()2033         public XmlSchemaMinExclusiveFacet() { }
2034     }
2035     public partial class XmlSchemaMinInclusiveFacet : System.Xml.Schema.XmlSchemaFacet
2036     {
XmlSchemaMinInclusiveFacet()2037         public XmlSchemaMinInclusiveFacet() { }
2038     }
2039     public partial class XmlSchemaMinLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
2040     {
XmlSchemaMinLengthFacet()2041         public XmlSchemaMinLengthFacet() { }
2042     }
2043     public partial class XmlSchemaNotation : System.Xml.Schema.XmlSchemaAnnotated
2044     {
XmlSchemaNotation()2045         public XmlSchemaNotation() { }
2046         [System.Xml.Serialization.XmlAttributeAttribute("name")]
2047         public string Name { get { throw null; } set { } }
2048         [System.Xml.Serialization.XmlAttributeAttribute("public")]
2049         public string Public { get { throw null; } set { } }
2050         [System.Xml.Serialization.XmlAttributeAttribute("system")]
2051         public string System { get { throw null; } set { } }
2052     }
2053     public abstract partial class XmlSchemaNumericFacet : System.Xml.Schema.XmlSchemaFacet
2054     {
XmlSchemaNumericFacet()2055         protected XmlSchemaNumericFacet() { }
2056     }
2057     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
2058     public abstract partial class XmlSchemaObject
2059     {
XmlSchemaObject()2060         protected XmlSchemaObject() { }
2061         [System.Xml.Serialization.XmlIgnoreAttribute]
2062         public int LineNumber { get { throw null; } set { } }
2063         [System.Xml.Serialization.XmlIgnoreAttribute]
2064         public int LinePosition { get { throw null; } set { } }
2065         [System.Xml.Serialization.XmlNamespaceDeclarationsAttribute]
2066         public System.Xml.Serialization.XmlSerializerNamespaces Namespaces { get { throw null; } set { } }
2067         [System.Xml.Serialization.XmlIgnoreAttribute]
2068         public System.Xml.Schema.XmlSchemaObject Parent { get { throw null; } set { } }
2069         [System.Xml.Serialization.XmlIgnoreAttribute]
2070         public string SourceUri { get { throw null; } set { } }
2071     }
2072     public partial class XmlSchemaObjectCollection : System.Collections.CollectionBase
2073     {
XmlSchemaObjectCollection()2074         public XmlSchemaObjectCollection() { }
XmlSchemaObjectCollection(System.Xml.Schema.XmlSchemaObject parent)2075         public XmlSchemaObjectCollection(System.Xml.Schema.XmlSchemaObject parent) { }
2076         public virtual System.Xml.Schema.XmlSchemaObject this[int index] { get { throw null; } set { } }
Add(System.Xml.Schema.XmlSchemaObject item)2077         public int Add(System.Xml.Schema.XmlSchemaObject item) { throw null; }
Contains(System.Xml.Schema.XmlSchemaObject item)2078         public bool Contains(System.Xml.Schema.XmlSchemaObject item) { throw null; }
CopyTo(System.Xml.Schema.XmlSchemaObject[] array, int index)2079         public void CopyTo(System.Xml.Schema.XmlSchemaObject[] array, int index) { }
GetEnumerator()2080         public new System.Xml.Schema.XmlSchemaObjectEnumerator GetEnumerator() { throw null; }
IndexOf(System.Xml.Schema.XmlSchemaObject item)2081         public int IndexOf(System.Xml.Schema.XmlSchemaObject item) { throw null; }
Insert(int index, System.Xml.Schema.XmlSchemaObject item)2082         public void Insert(int index, System.Xml.Schema.XmlSchemaObject item) { }
OnClear()2083         protected override void OnClear() { }
OnInsert(int index, object item)2084         protected override void OnInsert(int index, object item) { }
OnRemove(int index, object item)2085         protected override void OnRemove(int index, object item) { }
OnSet(int index, object oldValue, object newValue)2086         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Xml.Schema.XmlSchemaObject item)2087         public void Remove(System.Xml.Schema.XmlSchemaObject item) { }
2088     }
2089     public partial class XmlSchemaObjectEnumerator : System.Collections.IEnumerator
2090     {
XmlSchemaObjectEnumerator()2091         internal XmlSchemaObjectEnumerator() { }
2092         public System.Xml.Schema.XmlSchemaObject Current { get { throw null; } }
2093         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()2094         public bool MoveNext() { throw null; }
Reset()2095         public void Reset() { }
System.Collections.IEnumerator.MoveNext()2096         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()2097         void System.Collections.IEnumerator.Reset() { }
2098     }
2099     public partial class XmlSchemaObjectTable
2100     {
XmlSchemaObjectTable()2101         internal XmlSchemaObjectTable() { }
2102         public int Count { get { throw null; } }
2103         public System.Xml.Schema.XmlSchemaObject this[System.Xml.XmlQualifiedName name] { get { throw null; } }
2104         public System.Collections.ICollection Names { get { throw null; } }
2105         public System.Collections.ICollection Values { get { throw null; } }
Contains(System.Xml.XmlQualifiedName name)2106         public bool Contains(System.Xml.XmlQualifiedName name) { throw null; }
GetEnumerator()2107         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
2108     }
2109     public abstract partial class XmlSchemaParticle : System.Xml.Schema.XmlSchemaAnnotated
2110     {
XmlSchemaParticle()2111         protected XmlSchemaParticle() { }
2112         [System.Xml.Serialization.XmlIgnoreAttribute]
2113         public decimal MaxOccurs { get { throw null; } set { } }
2114         [System.Xml.Serialization.XmlAttributeAttribute("maxOccurs")]
2115         public string MaxOccursString { get { throw null; } set { } }
2116         [System.Xml.Serialization.XmlIgnoreAttribute]
2117         public decimal MinOccurs { get { throw null; } set { } }
2118         [System.Xml.Serialization.XmlAttributeAttribute("minOccurs")]
2119         public string MinOccursString { get { throw null; } set { } }
2120     }
2121     public partial class XmlSchemaPatternFacet : System.Xml.Schema.XmlSchemaFacet
2122     {
XmlSchemaPatternFacet()2123         public XmlSchemaPatternFacet() { }
2124     }
2125     public partial class XmlSchemaRedefine : System.Xml.Schema.XmlSchemaExternal
2126     {
XmlSchemaRedefine()2127         public XmlSchemaRedefine() { }
2128         [System.Xml.Serialization.XmlIgnoreAttribute]
2129         public System.Xml.Schema.XmlSchemaObjectTable AttributeGroups { get { throw null; } }
2130         [System.Xml.Serialization.XmlIgnoreAttribute]
2131         public System.Xml.Schema.XmlSchemaObjectTable Groups { get { throw null; } }
2132         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
2133         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroup))]
2134         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
2135         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroup))]
2136         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2137         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
2138         [System.Xml.Serialization.XmlIgnoreAttribute]
2139         public System.Xml.Schema.XmlSchemaObjectTable SchemaTypes { get { throw null; } }
2140     }
2141     public partial class XmlSchemaSequence : System.Xml.Schema.XmlSchemaGroupBase
2142     {
XmlSchemaSequence()2143         public XmlSchemaSequence() { }
2144         [System.Xml.Serialization.XmlElementAttribute("any", typeof(System.Xml.Schema.XmlSchemaAny))]
2145         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
2146         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
2147         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
2148         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
2149         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
2150     }
2151     public partial class XmlSchemaSet
2152     {
XmlSchemaSet()2153         public XmlSchemaSet() { }
XmlSchemaSet(System.Xml.XmlNameTable nameTable)2154         public XmlSchemaSet(System.Xml.XmlNameTable nameTable) { }
2155         public System.Xml.Schema.XmlSchemaCompilationSettings CompilationSettings { get { throw null; } set { } }
2156         public int Count { get { throw null; } }
2157         public System.Xml.Schema.XmlSchemaObjectTable GlobalAttributes { get { throw null; } }
2158         public System.Xml.Schema.XmlSchemaObjectTable GlobalElements { get { throw null; } }
2159         public System.Xml.Schema.XmlSchemaObjectTable GlobalTypes { get { throw null; } }
2160         public bool IsCompiled { get { throw null; } }
2161         public System.Xml.XmlNameTable NameTable { get { throw null; } }
2162         public System.Xml.XmlResolver XmlResolver { set { } }
2163         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Add(string targetNamespace, string schemaUri)2164         public System.Xml.Schema.XmlSchema Add(string targetNamespace, string schemaUri) { throw null; }
Add(string targetNamespace, System.Xml.XmlReader schemaDocument)2165         public System.Xml.Schema.XmlSchema Add(string targetNamespace, System.Xml.XmlReader schemaDocument) { throw null; }
Add(System.Xml.Schema.XmlSchema schema)2166         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema) { throw null; }
Add(System.Xml.Schema.XmlSchemaSet schemas)2167         public void Add(System.Xml.Schema.XmlSchemaSet schemas) { }
Compile()2168         public void Compile() { }
Contains(string targetNamespace)2169         public bool Contains(string targetNamespace) { throw null; }
Contains(System.Xml.Schema.XmlSchema schema)2170         public bool Contains(System.Xml.Schema.XmlSchema schema) { throw null; }
CopyTo(System.Xml.Schema.XmlSchema[] schemas, int index)2171         public void CopyTo(System.Xml.Schema.XmlSchema[] schemas, int index) { }
Remove(System.Xml.Schema.XmlSchema schema)2172         public System.Xml.Schema.XmlSchema Remove(System.Xml.Schema.XmlSchema schema) { throw null; }
RemoveRecursive(System.Xml.Schema.XmlSchema schemaToRemove)2173         public bool RemoveRecursive(System.Xml.Schema.XmlSchema schemaToRemove) { throw null; }
Reprocess(System.Xml.Schema.XmlSchema schema)2174         public System.Xml.Schema.XmlSchema Reprocess(System.Xml.Schema.XmlSchema schema) { throw null; }
Schemas()2175         public System.Collections.ICollection Schemas() { throw null; }
Schemas(string targetNamespace)2176         public System.Collections.ICollection Schemas(string targetNamespace) { throw null; }
2177     }
2178     public partial class XmlSchemaSimpleContent : System.Xml.Schema.XmlSchemaContentModel
2179     {
XmlSchemaSimpleContent()2180         public XmlSchemaSimpleContent() { }
2181         [System.Xml.Serialization.XmlElementAttribute("extension", typeof(System.Xml.Schema.XmlSchemaSimpleContentExtension))]
2182         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaSimpleContentRestriction))]
2183         public override System.Xml.Schema.XmlSchemaContent Content { get { throw null; } set { } }
2184     }
2185     public partial class XmlSchemaSimpleContentExtension : System.Xml.Schema.XmlSchemaContent
2186     {
XmlSchemaSimpleContentExtension()2187         public XmlSchemaSimpleContentExtension() { }
2188         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
2189         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
2190         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
2191         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
2192         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
2193         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2194         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2195     }
2196     public partial class XmlSchemaSimpleContentRestriction : System.Xml.Schema.XmlSchemaContent
2197     {
XmlSchemaSimpleContentRestriction()2198         public XmlSchemaSimpleContentRestriction() { }
2199         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
2200         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
2201         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
2202         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
2203         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
2204         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2205         public System.Xml.Schema.XmlSchemaSimpleType BaseType { get { throw null; } set { } }
2206         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2207         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2208         [System.Xml.Serialization.XmlElementAttribute("enumeration", typeof(System.Xml.Schema.XmlSchemaEnumerationFacet))]
2209         [System.Xml.Serialization.XmlElementAttribute("fractionDigits", typeof(System.Xml.Schema.XmlSchemaFractionDigitsFacet))]
2210         [System.Xml.Serialization.XmlElementAttribute("length", typeof(System.Xml.Schema.XmlSchemaLengthFacet))]
2211         [System.Xml.Serialization.XmlElementAttribute("maxExclusive", typeof(System.Xml.Schema.XmlSchemaMaxExclusiveFacet))]
2212         [System.Xml.Serialization.XmlElementAttribute("maxInclusive", typeof(System.Xml.Schema.XmlSchemaMaxInclusiveFacet))]
2213         [System.Xml.Serialization.XmlElementAttribute("maxLength", typeof(System.Xml.Schema.XmlSchemaMaxLengthFacet))]
2214         [System.Xml.Serialization.XmlElementAttribute("minExclusive", typeof(System.Xml.Schema.XmlSchemaMinExclusiveFacet))]
2215         [System.Xml.Serialization.XmlElementAttribute("minInclusive", typeof(System.Xml.Schema.XmlSchemaMinInclusiveFacet))]
2216         [System.Xml.Serialization.XmlElementAttribute("minLength", typeof(System.Xml.Schema.XmlSchemaMinLengthFacet))]
2217         [System.Xml.Serialization.XmlElementAttribute("pattern", typeof(System.Xml.Schema.XmlSchemaPatternFacet))]
2218         [System.Xml.Serialization.XmlElementAttribute("totalDigits", typeof(System.Xml.Schema.XmlSchemaTotalDigitsFacet))]
2219         [System.Xml.Serialization.XmlElementAttribute("whiteSpace", typeof(System.Xml.Schema.XmlSchemaWhiteSpaceFacet))]
2220         public System.Xml.Schema.XmlSchemaObjectCollection Facets { get { throw null; } }
2221     }
2222     public partial class XmlSchemaSimpleType : System.Xml.Schema.XmlSchemaType
2223     {
XmlSchemaSimpleType()2224         public XmlSchemaSimpleType() { }
2225         [System.Xml.Serialization.XmlElementAttribute("list", typeof(System.Xml.Schema.XmlSchemaSimpleTypeList))]
2226         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaSimpleTypeRestriction))]
2227         [System.Xml.Serialization.XmlElementAttribute("union", typeof(System.Xml.Schema.XmlSchemaSimpleTypeUnion))]
2228         public System.Xml.Schema.XmlSchemaSimpleTypeContent Content { get { throw null; } set { } }
2229     }
2230     public abstract partial class XmlSchemaSimpleTypeContent : System.Xml.Schema.XmlSchemaAnnotated
2231     {
XmlSchemaSimpleTypeContent()2232         protected XmlSchemaSimpleTypeContent() { }
2233     }
2234     public partial class XmlSchemaSimpleTypeList : System.Xml.Schema.XmlSchemaSimpleTypeContent
2235     {
XmlSchemaSimpleTypeList()2236         public XmlSchemaSimpleTypeList() { }
2237         [System.Xml.Serialization.XmlIgnoreAttribute]
2238         public System.Xml.Schema.XmlSchemaSimpleType BaseItemType { get { throw null; } set { } }
2239         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2240         public System.Xml.Schema.XmlSchemaSimpleType ItemType { get { throw null; } set { } }
2241         [System.Xml.Serialization.XmlAttributeAttribute("itemType")]
2242         public System.Xml.XmlQualifiedName ItemTypeName { get { throw null; } set { } }
2243     }
2244     public partial class XmlSchemaSimpleTypeRestriction : System.Xml.Schema.XmlSchemaSimpleTypeContent
2245     {
XmlSchemaSimpleTypeRestriction()2246         public XmlSchemaSimpleTypeRestriction() { }
2247         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2248         public System.Xml.Schema.XmlSchemaSimpleType BaseType { get { throw null; } set { } }
2249         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2250         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2251         [System.Xml.Serialization.XmlElementAttribute("enumeration", typeof(System.Xml.Schema.XmlSchemaEnumerationFacet))]
2252         [System.Xml.Serialization.XmlElementAttribute("fractionDigits", typeof(System.Xml.Schema.XmlSchemaFractionDigitsFacet))]
2253         [System.Xml.Serialization.XmlElementAttribute("length", typeof(System.Xml.Schema.XmlSchemaLengthFacet))]
2254         [System.Xml.Serialization.XmlElementAttribute("maxExclusive", typeof(System.Xml.Schema.XmlSchemaMaxExclusiveFacet))]
2255         [System.Xml.Serialization.XmlElementAttribute("maxInclusive", typeof(System.Xml.Schema.XmlSchemaMaxInclusiveFacet))]
2256         [System.Xml.Serialization.XmlElementAttribute("maxLength", typeof(System.Xml.Schema.XmlSchemaMaxLengthFacet))]
2257         [System.Xml.Serialization.XmlElementAttribute("minExclusive", typeof(System.Xml.Schema.XmlSchemaMinExclusiveFacet))]
2258         [System.Xml.Serialization.XmlElementAttribute("minInclusive", typeof(System.Xml.Schema.XmlSchemaMinInclusiveFacet))]
2259         [System.Xml.Serialization.XmlElementAttribute("minLength", typeof(System.Xml.Schema.XmlSchemaMinLengthFacet))]
2260         [System.Xml.Serialization.XmlElementAttribute("pattern", typeof(System.Xml.Schema.XmlSchemaPatternFacet))]
2261         [System.Xml.Serialization.XmlElementAttribute("totalDigits", typeof(System.Xml.Schema.XmlSchemaTotalDigitsFacet))]
2262         [System.Xml.Serialization.XmlElementAttribute("whiteSpace", typeof(System.Xml.Schema.XmlSchemaWhiteSpaceFacet))]
2263         public System.Xml.Schema.XmlSchemaObjectCollection Facets { get { throw null; } }
2264     }
2265     public partial class XmlSchemaSimpleTypeUnion : System.Xml.Schema.XmlSchemaSimpleTypeContent
2266     {
XmlSchemaSimpleTypeUnion()2267         public XmlSchemaSimpleTypeUnion() { }
2268         [System.Xml.Serialization.XmlIgnoreAttribute]
2269         public System.Xml.Schema.XmlSchemaSimpleType[] BaseMemberTypes { get { throw null; } }
2270         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2271         public System.Xml.Schema.XmlSchemaObjectCollection BaseTypes { get { throw null; } }
2272         [System.Xml.Serialization.XmlAttributeAttribute("memberTypes")]
2273         public System.Xml.XmlQualifiedName[] MemberTypes { get { throw null; } set { } }
2274     }
2275     public partial class XmlSchemaTotalDigitsFacet : System.Xml.Schema.XmlSchemaNumericFacet
2276     {
XmlSchemaTotalDigitsFacet()2277         public XmlSchemaTotalDigitsFacet() { }
2278     }
2279     public partial class XmlSchemaType : System.Xml.Schema.XmlSchemaAnnotated
2280     {
XmlSchemaType()2281         public XmlSchemaType() { }
2282         [System.ObsoleteAttribute("This property has been deprecated. Please use BaseXmlSchemaType property that returns a strongly typed base schema type. http://go.microsoft.com/fwlink/?linkid=14202")]
2283         [System.Xml.Serialization.XmlIgnoreAttribute]
2284         public object BaseSchemaType { get { throw null; } }
2285         [System.Xml.Serialization.XmlIgnoreAttribute]
2286         public System.Xml.Schema.XmlSchemaType BaseXmlSchemaType { get { throw null; } }
2287         [System.Xml.Serialization.XmlIgnoreAttribute]
2288         public System.Xml.Schema.XmlSchemaDatatype Datatype { get { throw null; } }
2289         [System.Xml.Serialization.XmlIgnoreAttribute]
2290         public System.Xml.Schema.XmlSchemaDerivationMethod DerivedBy { get { throw null; } }
2291         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
2292         [System.Xml.Serialization.XmlAttributeAttribute("final")]
2293         public System.Xml.Schema.XmlSchemaDerivationMethod Final { get { throw null; } set { } }
2294         [System.Xml.Serialization.XmlIgnoreAttribute]
2295         public System.Xml.Schema.XmlSchemaDerivationMethod FinalResolved { get { throw null; } }
2296         [System.Xml.Serialization.XmlIgnoreAttribute]
2297         public virtual bool IsMixed { get { throw null; } set { } }
2298         [System.Xml.Serialization.XmlAttributeAttribute("name")]
2299         public string Name { get { throw null; } set { } }
2300         [System.Xml.Serialization.XmlIgnoreAttribute]
2301         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
2302         [System.Xml.Serialization.XmlIgnoreAttribute]
2303         public System.Xml.Schema.XmlTypeCode TypeCode { get { throw null; } }
GetBuiltInComplexType(System.Xml.Schema.XmlTypeCode typeCode)2304         public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType(System.Xml.Schema.XmlTypeCode typeCode) { throw null; }
GetBuiltInComplexType(System.Xml.XmlQualifiedName qualifiedName)2305         public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType(System.Xml.XmlQualifiedName qualifiedName) { throw null; }
GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode typeCode)2306         public static System.Xml.Schema.XmlSchemaSimpleType GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode typeCode) { throw null; }
GetBuiltInSimpleType(System.Xml.XmlQualifiedName qualifiedName)2307         public static System.Xml.Schema.XmlSchemaSimpleType GetBuiltInSimpleType(System.Xml.XmlQualifiedName qualifiedName) { throw null; }
IsDerivedFrom(System.Xml.Schema.XmlSchemaType derivedType, System.Xml.Schema.XmlSchemaType baseType, System.Xml.Schema.XmlSchemaDerivationMethod except)2308         public static bool IsDerivedFrom(System.Xml.Schema.XmlSchemaType derivedType, System.Xml.Schema.XmlSchemaType baseType, System.Xml.Schema.XmlSchemaDerivationMethod except) { throw null; }
2309     }
2310     public partial class XmlSchemaUnique : System.Xml.Schema.XmlSchemaIdentityConstraint
2311     {
XmlSchemaUnique()2312         public XmlSchemaUnique() { }
2313     }
2314     public enum XmlSchemaUse
2315     {
2316         [System.Xml.Serialization.XmlIgnoreAttribute]
2317         None = 0,
2318         [System.Xml.Serialization.XmlEnumAttribute("optional")]
2319         Optional = 1,
2320         [System.Xml.Serialization.XmlEnumAttribute("prohibited")]
2321         Prohibited = 2,
2322         [System.Xml.Serialization.XmlEnumAttribute("required")]
2323         Required = 3,
2324     }
2325     [System.SerializableAttribute]
2326     public partial class XmlSchemaValidationException : System.Xml.Schema.XmlSchemaException
2327     {
XmlSchemaValidationException()2328         public XmlSchemaValidationException() { }
XmlSchemaValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2329         protected XmlSchemaValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaValidationException(string message)2330         public XmlSchemaValidationException(string message) { }
XmlSchemaValidationException(string message, System.Exception innerException)2331         public XmlSchemaValidationException(string message, System.Exception innerException) { }
XmlSchemaValidationException(string message, System.Exception innerException, int lineNumber, int linePosition)2332         public XmlSchemaValidationException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
2333         public object SourceObject { get { throw null; } }
2334         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2335         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SetSourceObject(object sourceObject)2336         protected internal void SetSourceObject(object sourceObject) { }
2337     }
2338     [System.FlagsAttribute]
2339     public enum XmlSchemaValidationFlags
2340     {
2341         AllowXmlAttributes = 16,
2342         None = 0,
2343         ProcessIdentityConstraints = 8,
2344         ProcessInlineSchema = 1,
2345         ProcessSchemaLocation = 2,
2346         ReportValidationWarnings = 4,
2347     }
2348     public sealed partial class XmlSchemaValidator
2349     {
XmlSchemaValidator(System.Xml.XmlNameTable nameTable, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.IXmlNamespaceResolver namespaceResolver, System.Xml.Schema.XmlSchemaValidationFlags validationFlags)2350         public XmlSchemaValidator(System.Xml.XmlNameTable nameTable, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.IXmlNamespaceResolver namespaceResolver, System.Xml.Schema.XmlSchemaValidationFlags validationFlags) { }
2351         public System.Xml.IXmlLineInfo LineInfoProvider { get { throw null; } set { } }
2352         public System.Uri SourceUri { get { throw null; } set { } }
2353         public object ValidationEventSender { get { throw null; } set { } }
2354         public System.Xml.XmlResolver XmlResolver { set { } }
2355         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
AddSchema(System.Xml.Schema.XmlSchema schema)2356         public void AddSchema(System.Xml.Schema.XmlSchema schema) { }
EndValidation()2357         public void EndValidation() { }
GetExpectedAttributes()2358         public System.Xml.Schema.XmlSchemaAttribute[] GetExpectedAttributes() { throw null; }
GetExpectedParticles()2359         public System.Xml.Schema.XmlSchemaParticle[] GetExpectedParticles() { throw null; }
GetUnspecifiedDefaultAttributes(System.Collections.ArrayList defaultAttributes)2360         public void GetUnspecifiedDefaultAttributes(System.Collections.ArrayList defaultAttributes) { }
Initialize()2361         public void Initialize() { }
Initialize(System.Xml.Schema.XmlSchemaObject partialValidationType)2362         public void Initialize(System.Xml.Schema.XmlSchemaObject partialValidationType) { }
SkipToEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo)2363         public void SkipToEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo) { }
ValidateAttribute(string localName, string namespaceUri, string attributeValue, System.Xml.Schema.XmlSchemaInfo schemaInfo)2364         public object ValidateAttribute(string localName, string namespaceUri, string attributeValue, System.Xml.Schema.XmlSchemaInfo schemaInfo) { throw null; }
ValidateAttribute(string localName, string namespaceUri, System.Xml.Schema.XmlValueGetter attributeValue, System.Xml.Schema.XmlSchemaInfo schemaInfo)2365         public object ValidateAttribute(string localName, string namespaceUri, System.Xml.Schema.XmlValueGetter attributeValue, System.Xml.Schema.XmlSchemaInfo schemaInfo) { throw null; }
ValidateElement(string localName, string namespaceUri, System.Xml.Schema.XmlSchemaInfo schemaInfo)2366         public void ValidateElement(string localName, string namespaceUri, System.Xml.Schema.XmlSchemaInfo schemaInfo) { }
ValidateElement(string localName, string namespaceUri, System.Xml.Schema.XmlSchemaInfo schemaInfo, string xsiType, string xsiNil, string xsiSchemaLocation, string xsiNoNamespaceSchemaLocation)2367         public void ValidateElement(string localName, string namespaceUri, System.Xml.Schema.XmlSchemaInfo schemaInfo, string xsiType, string xsiNil, string xsiSchemaLocation, string xsiNoNamespaceSchemaLocation) { }
ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo)2368         public object ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo) { throw null; }
ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo, object typedValue)2369         public object ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo, object typedValue) { throw null; }
ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo schemaInfo)2370         public void ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo schemaInfo) { }
ValidateText(string elementValue)2371         public void ValidateText(string elementValue) { }
ValidateText(System.Xml.Schema.XmlValueGetter elementValue)2372         public void ValidateText(System.Xml.Schema.XmlValueGetter elementValue) { }
ValidateWhitespace(string elementValue)2373         public void ValidateWhitespace(string elementValue) { }
ValidateWhitespace(System.Xml.Schema.XmlValueGetter elementValue)2374         public void ValidateWhitespace(System.Xml.Schema.XmlValueGetter elementValue) { }
2375     }
2376     public enum XmlSchemaValidity
2377     {
2378         Invalid = 2,
2379         NotKnown = 0,
2380         Valid = 1,
2381     }
2382     public partial class XmlSchemaWhiteSpaceFacet : System.Xml.Schema.XmlSchemaFacet
2383     {
XmlSchemaWhiteSpaceFacet()2384         public XmlSchemaWhiteSpaceFacet() { }
2385     }
2386     public partial class XmlSchemaXPath : System.Xml.Schema.XmlSchemaAnnotated
2387     {
XmlSchemaXPath()2388         public XmlSchemaXPath() { }
2389         [System.ComponentModel.DefaultValueAttribute("")]
2390         [System.Xml.Serialization.XmlAttributeAttribute("xpath")]
2391         public string XPath { get { throw null; } set { } }
2392     }
2393     public enum XmlSeverityType
2394     {
2395         Error = 0,
2396         Warning = 1,
2397     }
2398     public enum XmlTypeCode
2399     {
2400         AnyAtomicType = 10,
2401         AnyUri = 28,
2402         Attribute = 5,
2403         Base64Binary = 27,
2404         Boolean = 13,
2405         Byte = 46,
2406         Comment = 8,
2407         Date = 20,
2408         DateTime = 18,
2409         DayTimeDuration = 54,
2410         Decimal = 14,
2411         Document = 3,
2412         Double = 16,
2413         Duration = 17,
2414         Element = 4,
2415         Entity = 39,
2416         Float = 15,
2417         GDay = 24,
2418         GMonth = 25,
2419         GMonthDay = 23,
2420         GYear = 22,
2421         GYearMonth = 21,
2422         HexBinary = 26,
2423         Id = 37,
2424         Idref = 38,
2425         Int = 44,
2426         Integer = 40,
2427         Item = 1,
2428         Language = 33,
2429         Long = 43,
2430         Name = 35,
2431         Namespace = 6,
2432         NCName = 36,
2433         NegativeInteger = 42,
2434         NmToken = 34,
2435         Node = 2,
2436         None = 0,
2437         NonNegativeInteger = 47,
2438         NonPositiveInteger = 41,
2439         NormalizedString = 31,
2440         Notation = 30,
2441         PositiveInteger = 52,
2442         ProcessingInstruction = 7,
2443         QName = 29,
2444         Short = 45,
2445         String = 12,
2446         Text = 9,
2447         Time = 19,
2448         Token = 32,
2449         UnsignedByte = 51,
2450         UnsignedInt = 49,
2451         UnsignedLong = 48,
2452         UnsignedShort = 50,
2453         UntypedAtomic = 11,
2454         YearMonthDuration = 53,
2455     }
XmlValueGetter()2456     public delegate object XmlValueGetter();
2457 }
2458 namespace System.Xml.Serialization
2459 {
2460     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
2461     public abstract partial class CodeExporter
2462     {
CodeExporter()2463         internal CodeExporter() { }
2464         public System.CodeDom.CodeAttributeDeclarationCollection IncludeMetadata { get { throw null; } }
2465     }
2466     [System.FlagsAttribute]
2467     public enum CodeGenerationOptions
2468     {
2469         [System.Xml.Serialization.XmlEnumAttribute("enableDataBinding")]
2470         EnableDataBinding = 16,
2471         [System.Xml.Serialization.XmlEnumAttribute("newAsync")]
2472         GenerateNewAsync = 2,
2473         [System.Xml.Serialization.XmlEnumAttribute("oldAsync")]
2474         GenerateOldAsync = 4,
2475         [System.Xml.Serialization.XmlEnumAttribute("order")]
2476         GenerateOrder = 8,
2477         [System.Xml.Serialization.XmlEnumAttribute("properties")]
2478         GenerateProperties = 1,
2479         [System.Xml.Serialization.XmlIgnoreAttribute]
2480         None = 0,
2481     }
2482     public partial class CodeIdentifier
2483     {
2484         [System.ObsoleteAttribute("This class should never get constructed as it contains only static methods.")]
CodeIdentifier()2485         public CodeIdentifier() { }
MakeCamel(string identifier)2486         public static string MakeCamel(string identifier) { throw null; }
MakePascal(string identifier)2487         public static string MakePascal(string identifier) { throw null; }
MakeValid(string identifier)2488         public static string MakeValid(string identifier) { throw null; }
2489     }
2490     public partial class CodeIdentifiers
2491     {
CodeIdentifiers()2492         public CodeIdentifiers() { }
CodeIdentifiers(bool caseSensitive)2493         public CodeIdentifiers(bool caseSensitive) { }
2494         public bool UseCamelCasing { get { throw null; } set { } }
Add(string identifier, object value)2495         public void Add(string identifier, object value) { }
AddReserved(string identifier)2496         public void AddReserved(string identifier) { }
AddUnique(string identifier, object value)2497         public string AddUnique(string identifier, object value) { throw null; }
Clear()2498         public void Clear() { }
IsInUse(string identifier)2499         public bool IsInUse(string identifier) { throw null; }
MakeRightCase(string identifier)2500         public string MakeRightCase(string identifier) { throw null; }
MakeUnique(string identifier)2501         public string MakeUnique(string identifier) { throw null; }
Remove(string identifier)2502         public void Remove(string identifier) { }
RemoveReserved(string identifier)2503         public void RemoveReserved(string identifier) { }
ToArray(System.Type type)2504         public object ToArray(System.Type type) { throw null; }
2505     }
2506     public partial class ImportContext
2507     {
ImportContext(System.Xml.Serialization.CodeIdentifiers identifiers, bool shareTypes)2508         public ImportContext(System.Xml.Serialization.CodeIdentifiers identifiers, bool shareTypes) { }
2509         public bool ShareTypes { get { throw null; } }
2510         public System.Xml.Serialization.CodeIdentifiers TypeIdentifiers { get { throw null; } }
2511         public System.Collections.Specialized.StringCollection Warnings { get { throw null; } }
2512     }
2513     public partial interface IXmlSerializable
2514     {
GetSchema()2515         System.Xml.Schema.XmlSchema GetSchema();
ReadXml(System.Xml.XmlReader reader)2516         void ReadXml(System.Xml.XmlReader reader);
WriteXml(System.Xml.XmlWriter writer)2517         void WriteXml(System.Xml.XmlWriter writer);
2518     }
2519     public partial interface IXmlTextParser
2520     {
2521         bool Normalized { get; set; }
2522         System.Xml.WhitespaceHandling WhitespaceHandling { get; set; }
2523     }
2524     [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")]
2525     public abstract partial class SchemaImporter
2526     {
SchemaImporter()2527         internal SchemaImporter() { }
2528         public System.Xml.Serialization.Advanced.SchemaImporterExtensionCollection Extensions { get { throw null; } }
2529     }
2530     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2531     public partial class SoapAttributeAttribute : System.Attribute
2532     {
SoapAttributeAttribute()2533         public SoapAttributeAttribute() { }
SoapAttributeAttribute(string attributeName)2534         public SoapAttributeAttribute(string attributeName) { }
2535         public string AttributeName { get { throw null; } set { } }
2536         public string DataType { get { throw null; } set { } }
2537         public string Namespace { get { throw null; } set { } }
2538     }
2539     public partial class SoapAttributeOverrides
2540     {
SoapAttributeOverrides()2541         public SoapAttributeOverrides() { }
2542         public System.Xml.Serialization.SoapAttributes this[System.Type type] { get { throw null; } }
2543         public System.Xml.Serialization.SoapAttributes this[System.Type type, string member] { get { throw null; } }
Add(System.Type type, string member, System.Xml.Serialization.SoapAttributes attributes)2544         public void Add(System.Type type, string member, System.Xml.Serialization.SoapAttributes attributes) { }
Add(System.Type type, System.Xml.Serialization.SoapAttributes attributes)2545         public void Add(System.Type type, System.Xml.Serialization.SoapAttributes attributes) { }
2546     }
2547     public partial class SoapAttributes
2548     {
SoapAttributes()2549         public SoapAttributes() { }
SoapAttributes(System.Reflection.ICustomAttributeProvider provider)2550         public SoapAttributes(System.Reflection.ICustomAttributeProvider provider) { }
2551         public System.Xml.Serialization.SoapAttributeAttribute SoapAttribute { get { throw null; } set { } }
2552         public object SoapDefaultValue { get { throw null; } set { } }
2553         public System.Xml.Serialization.SoapElementAttribute SoapElement { get { throw null; } set { } }
2554         public System.Xml.Serialization.SoapEnumAttribute SoapEnum { get { throw null; } set { } }
2555         public bool SoapIgnore { get { throw null; } set { } }
2556         public System.Xml.Serialization.SoapTypeAttribute SoapType { get { throw null; } set { } }
2557     }
2558     public partial class SoapCodeExporter : System.Xml.Serialization.CodeExporter
2559     {
SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace)2560         public SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace) { }
SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit)2561         public SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit) { }
SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings)2562         public SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings) { }
SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options)2563         public SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options) { }
SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings)2564         public SoapCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings) { }
AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member)2565         public void AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member) { }
AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, bool forceUseMemberName)2566         public void AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, bool forceUseMemberName) { }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping)2567         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping) { }
ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)2568         public void ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { }
2569     }
2570     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2571     public partial class SoapElementAttribute : System.Attribute
2572     {
SoapElementAttribute()2573         public SoapElementAttribute() { }
SoapElementAttribute(string elementName)2574         public SoapElementAttribute(string elementName) { }
2575         public string DataType { get { throw null; } set { } }
2576         public string ElementName { get { throw null; } set { } }
2577         public bool IsNullable { get { throw null; } set { } }
2578     }
2579     [System.AttributeUsageAttribute((System.AttributeTargets)(256))]
2580     public partial class SoapEnumAttribute : System.Attribute
2581     {
SoapEnumAttribute()2582         public SoapEnumAttribute() { }
SoapEnumAttribute(string name)2583         public SoapEnumAttribute(string name) { }
2584         public string Name { get { throw null; } set { } }
2585     }
2586     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2587     public partial class SoapIgnoreAttribute : System.Attribute
2588     {
SoapIgnoreAttribute()2589         public SoapIgnoreAttribute() { }
2590     }
2591     [System.AttributeUsageAttribute((System.AttributeTargets)(1100), AllowMultiple=true)]
2592     public partial class SoapIncludeAttribute : System.Attribute
2593     {
SoapIncludeAttribute(System.Type type)2594         public SoapIncludeAttribute(System.Type type) { }
2595         public System.Type Type { get { throw null; } set { } }
2596     }
2597     public partial class SoapReflectionImporter
2598     {
SoapReflectionImporter()2599         public SoapReflectionImporter() { }
SoapReflectionImporter(string defaultNamespace)2600         public SoapReflectionImporter(string defaultNamespace) { }
SoapReflectionImporter(System.Xml.Serialization.SoapAttributeOverrides attributeOverrides)2601         public SoapReflectionImporter(System.Xml.Serialization.SoapAttributeOverrides attributeOverrides) { }
SoapReflectionImporter(System.Xml.Serialization.SoapAttributeOverrides attributeOverrides, string defaultNamespace)2602         public SoapReflectionImporter(System.Xml.Serialization.SoapAttributeOverrides attributeOverrides, string defaultNamespace) { }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members)2603         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors)2604         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate)2605         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate, System.Xml.Serialization.XmlMappingAccess access)2606         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate, System.Xml.Serialization.XmlMappingAccess access) { throw null; }
ImportTypeMapping(System.Type type)2607         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type) { throw null; }
ImportTypeMapping(System.Type type, string defaultNamespace)2608         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type, string defaultNamespace) { throw null; }
IncludeType(System.Type type)2609         public void IncludeType(System.Type type) { }
IncludeTypes(System.Reflection.ICustomAttributeProvider provider)2610         public void IncludeTypes(System.Reflection.ICustomAttributeProvider provider) { }
2611     }
2612     public partial class SoapSchemaExporter
2613     {
SoapSchemaExporter(System.Xml.Serialization.XmlSchemas schemas)2614         public SoapSchemaExporter(System.Xml.Serialization.XmlSchemas schemas) { }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping)2615         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping) { }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping, bool exportEnclosingType)2616         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping, bool exportEnclosingType) { }
ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)2617         public void ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { }
2618     }
2619     public partial class SoapSchemaImporter : System.Xml.Serialization.SchemaImporter
2620     {
SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas)2621         public SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas) { }
SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.ImportContext context)2622         public SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.ImportContext context) { }
SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.Xml.Serialization.ImportContext context)2623         public SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.Xml.Serialization.ImportContext context) { }
SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers)2624         public SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers) { }
SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers, System.Xml.Serialization.CodeGenerationOptions options)2625         public SoapSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers, System.Xml.Serialization.CodeGenerationOptions options) { }
ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType, bool baseTypeCanBeIndirect)2626         public System.Xml.Serialization.XmlTypeMapping ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType, bool baseTypeCanBeIndirect) { throw null; }
ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember member)2627         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember member) { throw null; }
ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members)2628         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members) { throw null; }
ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members, bool hasWrapperElement)2629         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members, bool hasWrapperElement) { throw null; }
ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members, bool hasWrapperElement, System.Type baseType, bool baseTypeCanBeIndirect)2630         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members, bool hasWrapperElement, System.Type baseType, bool baseTypeCanBeIndirect) { throw null; }
2631     }
2632     public partial class SoapSchemaMember
2633     {
SoapSchemaMember()2634         public SoapSchemaMember() { }
2635         public string MemberName { get { throw null; } set { } }
2636         public System.Xml.XmlQualifiedName MemberType { get { throw null; } set { } }
2637     }
2638     [System.AttributeUsageAttribute((System.AttributeTargets)(1052))]
2639     public partial class SoapTypeAttribute : System.Attribute
2640     {
SoapTypeAttribute()2641         public SoapTypeAttribute() { }
SoapTypeAttribute(string typeName)2642         public SoapTypeAttribute(string typeName) { }
SoapTypeAttribute(string typeName, string ns)2643         public SoapTypeAttribute(string typeName, string ns) { }
2644         public bool IncludeInSchema { get { throw null; } set { } }
2645         public string Namespace { get { throw null; } set { } }
2646         public string TypeName { get { throw null; } set { } }
2647     }
2648     public partial class UnreferencedObjectEventArgs : System.EventArgs
2649     {
UnreferencedObjectEventArgs(object o, string id)2650         public UnreferencedObjectEventArgs(object o, string id) { }
2651         public string UnreferencedId { get { throw null; } }
2652         public object UnreferencedObject { get { throw null; } }
2653     }
UnreferencedObjectEventHandler(object sender, System.Xml.Serialization.UnreferencedObjectEventArgs e)2654     public delegate void UnreferencedObjectEventHandler(object sender, System.Xml.Serialization.UnreferencedObjectEventArgs e);
2655     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false)]
2656     public partial class XmlAnyAttributeAttribute : System.Attribute
2657     {
XmlAnyAttributeAttribute()2658         public XmlAnyAttributeAttribute() { }
2659     }
2660     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=true)]
2661     public partial class XmlAnyElementAttribute : System.Attribute
2662     {
XmlAnyElementAttribute()2663         public XmlAnyElementAttribute() { }
XmlAnyElementAttribute(string name)2664         public XmlAnyElementAttribute(string name) { }
XmlAnyElementAttribute(string name, string ns)2665         public XmlAnyElementAttribute(string name, string ns) { }
2666         public string Name { get { throw null; } set { } }
2667         public string Namespace { get { throw null; } set { } }
2668         public int Order { get { throw null; } set { } }
2669     }
2670     public partial class XmlAnyElementAttributes : System.Collections.CollectionBase
2671     {
XmlAnyElementAttributes()2672         public XmlAnyElementAttributes() { }
2673         public System.Xml.Serialization.XmlAnyElementAttribute this[int index] { get { throw null; } set { } }
Add(System.Xml.Serialization.XmlAnyElementAttribute attribute)2674         public int Add(System.Xml.Serialization.XmlAnyElementAttribute attribute) { throw null; }
Contains(System.Xml.Serialization.XmlAnyElementAttribute attribute)2675         public bool Contains(System.Xml.Serialization.XmlAnyElementAttribute attribute) { throw null; }
CopyTo(System.Xml.Serialization.XmlAnyElementAttribute[] array, int index)2676         public void CopyTo(System.Xml.Serialization.XmlAnyElementAttribute[] array, int index) { }
IndexOf(System.Xml.Serialization.XmlAnyElementAttribute attribute)2677         public int IndexOf(System.Xml.Serialization.XmlAnyElementAttribute attribute) { throw null; }
Insert(int index, System.Xml.Serialization.XmlAnyElementAttribute attribute)2678         public void Insert(int index, System.Xml.Serialization.XmlAnyElementAttribute attribute) { }
Remove(System.Xml.Serialization.XmlAnyElementAttribute attribute)2679         public void Remove(System.Xml.Serialization.XmlAnyElementAttribute attribute) { }
2680     }
2681     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false)]
2682     public partial class XmlArrayAttribute : System.Attribute
2683     {
XmlArrayAttribute()2684         public XmlArrayAttribute() { }
XmlArrayAttribute(string elementName)2685         public XmlArrayAttribute(string elementName) { }
2686         public string ElementName { get { throw null; } set { } }
2687         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2688         public bool IsNullable { get { throw null; } set { } }
2689         public string Namespace { get { throw null; } set { } }
2690         public int Order { get { throw null; } set { } }
2691     }
2692     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=true)]
2693     public partial class XmlArrayItemAttribute : System.Attribute
2694     {
XmlArrayItemAttribute()2695         public XmlArrayItemAttribute() { }
XmlArrayItemAttribute(string elementName)2696         public XmlArrayItemAttribute(string elementName) { }
XmlArrayItemAttribute(string elementName, System.Type type)2697         public XmlArrayItemAttribute(string elementName, System.Type type) { }
XmlArrayItemAttribute(System.Type type)2698         public XmlArrayItemAttribute(System.Type type) { }
2699         public string DataType { get { throw null; } set { } }
2700         public string ElementName { get { throw null; } set { } }
2701         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2702         public bool IsNullable { get { throw null; } set { } }
2703         public string Namespace { get { throw null; } set { } }
2704         public int NestingLevel { get { throw null; } set { } }
2705         public System.Type Type { get { throw null; } set { } }
2706     }
2707     public partial class XmlArrayItemAttributes : System.Collections.CollectionBase
2708     {
XmlArrayItemAttributes()2709         public XmlArrayItemAttributes() { }
2710         public System.Xml.Serialization.XmlArrayItemAttribute this[int index] { get { throw null; } set { } }
Add(System.Xml.Serialization.XmlArrayItemAttribute attribute)2711         public int Add(System.Xml.Serialization.XmlArrayItemAttribute attribute) { throw null; }
Contains(System.Xml.Serialization.XmlArrayItemAttribute attribute)2712         public bool Contains(System.Xml.Serialization.XmlArrayItemAttribute attribute) { throw null; }
CopyTo(System.Xml.Serialization.XmlArrayItemAttribute[] array, int index)2713         public void CopyTo(System.Xml.Serialization.XmlArrayItemAttribute[] array, int index) { }
IndexOf(System.Xml.Serialization.XmlArrayItemAttribute attribute)2714         public int IndexOf(System.Xml.Serialization.XmlArrayItemAttribute attribute) { throw null; }
Insert(int index, System.Xml.Serialization.XmlArrayItemAttribute attribute)2715         public void Insert(int index, System.Xml.Serialization.XmlArrayItemAttribute attribute) { }
Remove(System.Xml.Serialization.XmlArrayItemAttribute attribute)2716         public void Remove(System.Xml.Serialization.XmlArrayItemAttribute attribute) { }
2717     }
2718     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2719     public partial class XmlAttributeAttribute : System.Attribute
2720     {
XmlAttributeAttribute()2721         public XmlAttributeAttribute() { }
XmlAttributeAttribute(string attributeName)2722         public XmlAttributeAttribute(string attributeName) { }
XmlAttributeAttribute(string attributeName, System.Type type)2723         public XmlAttributeAttribute(string attributeName, System.Type type) { }
XmlAttributeAttribute(System.Type type)2724         public XmlAttributeAttribute(System.Type type) { }
2725         public string AttributeName { get { throw null; } set { } }
2726         public string DataType { get { throw null; } set { } }
2727         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2728         public string Namespace { get { throw null; } set { } }
2729         public System.Type Type { get { throw null; } set { } }
2730     }
2731     public partial class XmlAttributeEventArgs : System.EventArgs
2732     {
XmlAttributeEventArgs()2733         internal XmlAttributeEventArgs() { }
2734         public System.Xml.XmlAttribute Attr { get { throw null; } }
2735         public string ExpectedAttributes { get { throw null; } }
2736         public int LineNumber { get { throw null; } }
2737         public int LinePosition { get { throw null; } }
2738         public object ObjectBeingDeserialized { get { throw null; } }
2739     }
XmlAttributeEventHandler(object sender, System.Xml.Serialization.XmlAttributeEventArgs e)2740     public delegate void XmlAttributeEventHandler(object sender, System.Xml.Serialization.XmlAttributeEventArgs e);
2741     public partial class XmlAttributeOverrides
2742     {
XmlAttributeOverrides()2743         public XmlAttributeOverrides() { }
2744         public System.Xml.Serialization.XmlAttributes this[System.Type type] { get { throw null; } }
2745         public System.Xml.Serialization.XmlAttributes this[System.Type type, string member] { get { throw null; } }
Add(System.Type type, string member, System.Xml.Serialization.XmlAttributes attributes)2746         public void Add(System.Type type, string member, System.Xml.Serialization.XmlAttributes attributes) { }
Add(System.Type type, System.Xml.Serialization.XmlAttributes attributes)2747         public void Add(System.Type type, System.Xml.Serialization.XmlAttributes attributes) { }
2748     }
2749     public partial class XmlAttributes
2750     {
XmlAttributes()2751         public XmlAttributes() { }
XmlAttributes(System.Reflection.ICustomAttributeProvider provider)2752         public XmlAttributes(System.Reflection.ICustomAttributeProvider provider) { }
2753         public System.Xml.Serialization.XmlAnyAttributeAttribute XmlAnyAttribute { get { throw null; } set { } }
2754         public System.Xml.Serialization.XmlAnyElementAttributes XmlAnyElements { get { throw null; } }
2755         public System.Xml.Serialization.XmlArrayAttribute XmlArray { get { throw null; } set { } }
2756         public System.Xml.Serialization.XmlArrayItemAttributes XmlArrayItems { get { throw null; } }
2757         public System.Xml.Serialization.XmlAttributeAttribute XmlAttribute { get { throw null; } set { } }
2758         public System.Xml.Serialization.XmlChoiceIdentifierAttribute XmlChoiceIdentifier { get { throw null; } }
2759         public object XmlDefaultValue { get { throw null; } set { } }
2760         public System.Xml.Serialization.XmlElementAttributes XmlElements { get { throw null; } }
2761         public System.Xml.Serialization.XmlEnumAttribute XmlEnum { get { throw null; } set { } }
2762         public bool XmlIgnore { get { throw null; } set { } }
2763         public bool Xmlns { get { throw null; } set { } }
2764         public System.Xml.Serialization.XmlRootAttribute XmlRoot { get { throw null; } set { } }
2765         public System.Xml.Serialization.XmlTextAttribute XmlText { get { throw null; } set { } }
2766         public System.Xml.Serialization.XmlTypeAttribute XmlType { get { throw null; } set { } }
2767     }
2768     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false)]
2769     public partial class XmlChoiceIdentifierAttribute : System.Attribute
2770     {
XmlChoiceIdentifierAttribute()2771         public XmlChoiceIdentifierAttribute() { }
XmlChoiceIdentifierAttribute(string name)2772         public XmlChoiceIdentifierAttribute(string name) { }
2773         public string MemberName { get { throw null; } set { } }
2774     }
2775     public partial class XmlCodeExporter : System.Xml.Serialization.CodeExporter
2776     {
XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace)2777         public XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace) { }
XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit)2778         public XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit) { }
XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings)2779         public XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings) { }
XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options)2780         public XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options) { }
XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings)2781         public XmlCodeExporter(System.CodeDom.CodeNamespace codeNamespace, System.CodeDom.CodeCompileUnit codeCompileUnit, System.Xml.Serialization.CodeGenerationOptions options, System.Collections.Hashtable mappings) { }
AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, string ns)2782         public void AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, string ns) { }
AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, string ns, bool forceUseMemberName)2783         public void AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlMemberMapping member, string ns, bool forceUseMemberName) { }
AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlTypeMapping mapping, string ns)2784         public void AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection metadata, System.Xml.Serialization.XmlTypeMapping mapping, string ns) { }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping)2785         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping) { }
ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)2786         public void ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { }
2787     }
2788     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
2789     public partial struct XmlDeserializationEvents
2790     {
2791         public System.Xml.Serialization.XmlAttributeEventHandler OnUnknownAttribute { get { throw null; } set { } }
2792         public System.Xml.Serialization.XmlElementEventHandler OnUnknownElement { get { throw null; } set { } }
2793         public System.Xml.Serialization.XmlNodeEventHandler OnUnknownNode { get { throw null; } set { } }
2794         public System.Xml.Serialization.UnreferencedObjectEventHandler OnUnreferencedObject { get { throw null; } set { } }
2795     }
2796     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=true)]
2797     public partial class XmlElementAttribute : System.Attribute
2798     {
XmlElementAttribute()2799         public XmlElementAttribute() { }
XmlElementAttribute(string elementName)2800         public XmlElementAttribute(string elementName) { }
XmlElementAttribute(string elementName, System.Type type)2801         public XmlElementAttribute(string elementName, System.Type type) { }
XmlElementAttribute(System.Type type)2802         public XmlElementAttribute(System.Type type) { }
2803         public string DataType { get { throw null; } set { } }
2804         public string ElementName { get { throw null; } set { } }
2805         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2806         public bool IsNullable { get { throw null; } set { } }
2807         public string Namespace { get { throw null; } set { } }
2808         public int Order { get { throw null; } set { } }
2809         public System.Type Type { get { throw null; } set { } }
2810     }
2811     public partial class XmlElementAttributes : System.Collections.CollectionBase
2812     {
XmlElementAttributes()2813         public XmlElementAttributes() { }
2814         public System.Xml.Serialization.XmlElementAttribute this[int index] { get { throw null; } set { } }
Add(System.Xml.Serialization.XmlElementAttribute attribute)2815         public int Add(System.Xml.Serialization.XmlElementAttribute attribute) { throw null; }
Contains(System.Xml.Serialization.XmlElementAttribute attribute)2816         public bool Contains(System.Xml.Serialization.XmlElementAttribute attribute) { throw null; }
CopyTo(System.Xml.Serialization.XmlElementAttribute[] array, int index)2817         public void CopyTo(System.Xml.Serialization.XmlElementAttribute[] array, int index) { }
IndexOf(System.Xml.Serialization.XmlElementAttribute attribute)2818         public int IndexOf(System.Xml.Serialization.XmlElementAttribute attribute) { throw null; }
Insert(int index, System.Xml.Serialization.XmlElementAttribute attribute)2819         public void Insert(int index, System.Xml.Serialization.XmlElementAttribute attribute) { }
Remove(System.Xml.Serialization.XmlElementAttribute attribute)2820         public void Remove(System.Xml.Serialization.XmlElementAttribute attribute) { }
2821     }
2822     public partial class XmlElementEventArgs : System.EventArgs
2823     {
XmlElementEventArgs()2824         internal XmlElementEventArgs() { }
2825         public System.Xml.XmlElement Element { get { throw null; } }
2826         public string ExpectedElements { get { throw null; } }
2827         public int LineNumber { get { throw null; } }
2828         public int LinePosition { get { throw null; } }
2829         public object ObjectBeingDeserialized { get { throw null; } }
2830     }
XmlElementEventHandler(object sender, System.Xml.Serialization.XmlElementEventArgs e)2831     public delegate void XmlElementEventHandler(object sender, System.Xml.Serialization.XmlElementEventArgs e);
2832     [System.AttributeUsageAttribute((System.AttributeTargets)(256))]
2833     public partial class XmlEnumAttribute : System.Attribute
2834     {
XmlEnumAttribute()2835         public XmlEnumAttribute() { }
XmlEnumAttribute(string name)2836         public XmlEnumAttribute(string name) { }
2837         public string Name { get { throw null; } set { } }
2838     }
2839     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2840     public partial class XmlIgnoreAttribute : System.Attribute
2841     {
XmlIgnoreAttribute()2842         public XmlIgnoreAttribute() { }
2843     }
2844     [System.AttributeUsageAttribute((System.AttributeTargets)(1100), AllowMultiple=true)]
2845     public partial class XmlIncludeAttribute : System.Attribute
2846     {
XmlIncludeAttribute(System.Type type)2847         public XmlIncludeAttribute(System.Type type) { }
2848         public System.Type Type { get { throw null; } set { } }
2849     }
2850     public abstract partial class XmlMapping
2851     {
XmlMapping()2852         internal XmlMapping() { }
2853         public string ElementName { get { throw null; } }
2854         public string Namespace { get { throw null; } }
2855         public string XsdElementName { get { throw null; } }
SetKey(string key)2856         public void SetKey(string key) { }
2857     }
2858     [System.FlagsAttribute]
2859     public enum XmlMappingAccess
2860     {
2861         None = 0,
2862         Read = 1,
2863         Write = 2,
2864     }
2865     public partial class XmlMemberMapping
2866     {
XmlMemberMapping()2867         internal XmlMemberMapping() { }
2868         public bool Any { get { throw null; } }
2869         public bool CheckSpecified { get { throw null; } }
2870         public string ElementName { get { throw null; } }
2871         public string MemberName { get { throw null; } }
2872         public string Namespace { get { throw null; } }
2873         public string TypeFullName { get { throw null; } }
2874         public string TypeName { get { throw null; } }
2875         public string TypeNamespace { get { throw null; } }
2876         public string XsdElementName { get { throw null; } }
GenerateTypeName(System.CodeDom.Compiler.CodeDomProvider codeProvider)2877         public string GenerateTypeName(System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
2878     }
2879     public partial class XmlMembersMapping : System.Xml.Serialization.XmlMapping
2880     {
XmlMembersMapping()2881         internal XmlMembersMapping() { }
2882         public int Count { get { throw null; } }
2883         public System.Xml.Serialization.XmlMemberMapping this[int index] { get { throw null; } }
2884         public string TypeName { get { throw null; } }
2885         public string TypeNamespace { get { throw null; } }
2886     }
2887     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=false)]
2888     public partial class XmlNamespaceDeclarationsAttribute : System.Attribute
2889     {
XmlNamespaceDeclarationsAttribute()2890         public XmlNamespaceDeclarationsAttribute() { }
2891     }
2892     public partial class XmlNodeEventArgs : System.EventArgs
2893     {
XmlNodeEventArgs()2894         internal XmlNodeEventArgs() { }
2895         public int LineNumber { get { throw null; } }
2896         public int LinePosition { get { throw null; } }
2897         public string LocalName { get { throw null; } }
2898         public string Name { get { throw null; } }
2899         public string NamespaceURI { get { throw null; } }
2900         public System.Xml.XmlNodeType NodeType { get { throw null; } }
2901         public object ObjectBeingDeserialized { get { throw null; } }
2902         public string Text { get { throw null; } }
2903     }
XmlNodeEventHandler(object sender, System.Xml.Serialization.XmlNodeEventArgs e)2904     public delegate void XmlNodeEventHandler(object sender, System.Xml.Serialization.XmlNodeEventArgs e);
2905     public partial class XmlReflectionImporter
2906     {
XmlReflectionImporter()2907         public XmlReflectionImporter() { }
XmlReflectionImporter(string defaultNamespace)2908         public XmlReflectionImporter(string defaultNamespace) { }
XmlReflectionImporter(System.Xml.Serialization.XmlAttributeOverrides attributeOverrides)2909         public XmlReflectionImporter(System.Xml.Serialization.XmlAttributeOverrides attributeOverrides) { }
XmlReflectionImporter(System.Xml.Serialization.XmlAttributeOverrides attributeOverrides, string defaultNamespace)2910         public XmlReflectionImporter(System.Xml.Serialization.XmlAttributeOverrides attributeOverrides, string defaultNamespace) { }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement)2911         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc)2912         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc, bool openModel)2913         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc, bool openModel) { throw null; }
ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc, bool openModel, System.Xml.Serialization.XmlMappingAccess access)2914         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string elementName, string ns, System.Xml.Serialization.XmlReflectionMember[] members, bool hasWrapperElement, bool rpc, bool openModel, System.Xml.Serialization.XmlMappingAccess access) { throw null; }
ImportTypeMapping(System.Type type)2915         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type) { throw null; }
ImportTypeMapping(System.Type type, string defaultNamespace)2916         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type, string defaultNamespace) { throw null; }
ImportTypeMapping(System.Type type, System.Xml.Serialization.XmlRootAttribute root)2917         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type, System.Xml.Serialization.XmlRootAttribute root) { throw null; }
ImportTypeMapping(System.Type type, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace)2918         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Type type, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace) { throw null; }
IncludeType(System.Type type)2919         public void IncludeType(System.Type type) { }
IncludeTypes(System.Reflection.ICustomAttributeProvider provider)2920         public void IncludeTypes(System.Reflection.ICustomAttributeProvider provider) { }
2921     }
2922     public partial class XmlReflectionMember
2923     {
XmlReflectionMember()2924         public XmlReflectionMember() { }
2925         public bool IsReturnValue { get { throw null; } set { } }
2926         public string MemberName { get { throw null; } set { } }
2927         public System.Type MemberType { get { throw null; } set { } }
2928         public bool OverrideIsNullable { get { throw null; } set { } }
2929         public System.Xml.Serialization.SoapAttributes SoapAttributes { get { throw null; } set { } }
2930         public System.Xml.Serialization.XmlAttributes XmlAttributes { get { throw null; } set { } }
2931     }
2932     [System.AttributeUsageAttribute((System.AttributeTargets)(9244))]
2933     public partial class XmlRootAttribute : System.Attribute
2934     {
XmlRootAttribute()2935         public XmlRootAttribute() { }
XmlRootAttribute(string elementName)2936         public XmlRootAttribute(string elementName) { }
2937         public string DataType { get { throw null; } set { } }
2938         public string ElementName { get { throw null; } set { } }
2939         public bool IsNullable { get { throw null; } set { } }
2940         public string Namespace { get { throw null; } set { } }
2941     }
2942     public partial class XmlSchemaEnumerator : System.Collections.Generic.IEnumerator<System.Xml.Schema.XmlSchema>, System.Collections.IEnumerator, System.IDisposable
2943     {
XmlSchemaEnumerator(System.Xml.Serialization.XmlSchemas list)2944         public XmlSchemaEnumerator(System.Xml.Serialization.XmlSchemas list) { }
2945         public System.Xml.Schema.XmlSchema Current { get { throw null; } }
2946         object System.Collections.IEnumerator.Current { get { throw null; } }
Dispose()2947         public void Dispose() { }
MoveNext()2948         public bool MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()2949         void System.Collections.IEnumerator.Reset() { }
2950     }
2951     public partial class XmlSchemaExporter
2952     {
XmlSchemaExporter(System.Xml.Serialization.XmlSchemas schemas)2953         public XmlSchemaExporter(System.Xml.Serialization.XmlSchemas schemas) { }
ExportAnyType(string ns)2954         public string ExportAnyType(string ns) { throw null; }
ExportAnyType(System.Xml.Serialization.XmlMembersMapping members)2955         public string ExportAnyType(System.Xml.Serialization.XmlMembersMapping members) { throw null; }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping)2956         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping) { }
ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping, bool exportEnclosingType)2957         public void ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping, bool exportEnclosingType) { }
ExportTypeMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping)2958         public System.Xml.XmlQualifiedName ExportTypeMapping(System.Xml.Serialization.XmlMembersMapping xmlMembersMapping) { throw null; }
ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)2959         public void ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { }
2960     }
2961     public partial class XmlSchemaImporter : System.Xml.Serialization.SchemaImporter
2962     {
XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas)2963         public XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas) { }
XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.ImportContext context)2964         public XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider, System.Xml.Serialization.ImportContext context) { }
XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.Xml.Serialization.ImportContext context)2965         public XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeGenerationOptions options, System.Xml.Serialization.ImportContext context) { }
XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers)2966         public XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers) { }
XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers, System.Xml.Serialization.CodeGenerationOptions options)2967         public XmlSchemaImporter(System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.CodeIdentifiers typeIdentifiers, System.Xml.Serialization.CodeGenerationOptions options) { }
ImportAnyType(System.Xml.XmlQualifiedName typeName, string elementName)2968         public System.Xml.Serialization.XmlMembersMapping ImportAnyType(System.Xml.XmlQualifiedName typeName, string elementName) { throw null; }
ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType)2969         public System.Xml.Serialization.XmlTypeMapping ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType) { throw null; }
ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType, bool baseTypeCanBeIndirect)2970         public System.Xml.Serialization.XmlTypeMapping ImportDerivedTypeMapping(System.Xml.XmlQualifiedName name, System.Type baseType, bool baseTypeCanBeIndirect) { throw null; }
ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members)2971         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(string name, string ns, System.Xml.Serialization.SoapSchemaMember[] members) { throw null; }
ImportMembersMapping(System.Xml.XmlQualifiedName name)2972         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(System.Xml.XmlQualifiedName name) { throw null; }
ImportMembersMapping(System.Xml.XmlQualifiedName[] names)2973         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(System.Xml.XmlQualifiedName[] names) { throw null; }
ImportMembersMapping(System.Xml.XmlQualifiedName[] names, System.Type baseType, bool baseTypeCanBeIndirect)2974         public System.Xml.Serialization.XmlMembersMapping ImportMembersMapping(System.Xml.XmlQualifiedName[] names, System.Type baseType, bool baseTypeCanBeIndirect) { throw null; }
ImportSchemaType(System.Xml.XmlQualifiedName typeName)2975         public System.Xml.Serialization.XmlTypeMapping ImportSchemaType(System.Xml.XmlQualifiedName typeName) { throw null; }
ImportSchemaType(System.Xml.XmlQualifiedName typeName, System.Type baseType)2976         public System.Xml.Serialization.XmlTypeMapping ImportSchemaType(System.Xml.XmlQualifiedName typeName, System.Type baseType) { throw null; }
ImportSchemaType(System.Xml.XmlQualifiedName typeName, System.Type baseType, bool baseTypeCanBeIndirect)2977         public System.Xml.Serialization.XmlTypeMapping ImportSchemaType(System.Xml.XmlQualifiedName typeName, System.Type baseType, bool baseTypeCanBeIndirect) { throw null; }
ImportTypeMapping(System.Xml.XmlQualifiedName name)2978         public System.Xml.Serialization.XmlTypeMapping ImportTypeMapping(System.Xml.XmlQualifiedName name) { throw null; }
2979     }
2980     [System.AttributeUsageAttribute((System.AttributeTargets)(1036))]
2981     public sealed partial class XmlSchemaProviderAttribute : System.Attribute
2982     {
XmlSchemaProviderAttribute(string methodName)2983         public XmlSchemaProviderAttribute(string methodName) { }
2984         public bool IsAny { get { throw null; } set { } }
2985         public string MethodName { get { throw null; } }
2986     }
2987     public partial class XmlSchemas : System.Collections.CollectionBase, System.Collections.Generic.IEnumerable<System.Xml.Schema.XmlSchema>, System.Collections.IEnumerable
2988     {
XmlSchemas()2989         public XmlSchemas() { }
2990         public bool IsCompiled { get { throw null; } }
2991         public System.Xml.Schema.XmlSchema this[int index] { get { throw null; } set { } }
2992         public System.Xml.Schema.XmlSchema this[string ns] { get { throw null; } }
Add(System.Xml.Schema.XmlSchema schema)2993         public int Add(System.Xml.Schema.XmlSchema schema) { throw null; }
Add(System.Xml.Schema.XmlSchema schema, System.Uri baseUri)2994         public int Add(System.Xml.Schema.XmlSchema schema, System.Uri baseUri) { throw null; }
Add(System.Xml.Serialization.XmlSchemas schemas)2995         public void Add(System.Xml.Serialization.XmlSchemas schemas) { }
AddReference(System.Xml.Schema.XmlSchema schema)2996         public void AddReference(System.Xml.Schema.XmlSchema schema) { }
Compile(System.Xml.Schema.ValidationEventHandler handler, bool fullCompile)2997         public void Compile(System.Xml.Schema.ValidationEventHandler handler, bool fullCompile) { }
Contains(string targetNamespace)2998         public bool Contains(string targetNamespace) { throw null; }
Contains(System.Xml.Schema.XmlSchema schema)2999         public bool Contains(System.Xml.Schema.XmlSchema schema) { throw null; }
CopyTo(System.Xml.Schema.XmlSchema[] array, int index)3000         public void CopyTo(System.Xml.Schema.XmlSchema[] array, int index) { }
Find(System.Xml.XmlQualifiedName name, System.Type type)3001         public object Find(System.Xml.XmlQualifiedName name, System.Type type) { throw null; }
GetSchemas(string ns)3002         public System.Collections.IList GetSchemas(string ns) { throw null; }
IndexOf(System.Xml.Schema.XmlSchema schema)3003         public int IndexOf(System.Xml.Schema.XmlSchema schema) { throw null; }
Insert(int index, System.Xml.Schema.XmlSchema schema)3004         public void Insert(int index, System.Xml.Schema.XmlSchema schema) { }
IsDataSet(System.Xml.Schema.XmlSchema schema)3005         public static bool IsDataSet(System.Xml.Schema.XmlSchema schema) { throw null; }
OnClear()3006         protected override void OnClear() { }
OnInsert(int index, object value)3007         protected override void OnInsert(int index, object value) { }
OnRemove(int index, object value)3008         protected override void OnRemove(int index, object value) { }
OnSet(int index, object oldValue, object newValue)3009         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Xml.Schema.XmlSchema schema)3010         public void Remove(System.Xml.Schema.XmlSchema schema) { }
GetEnumerator()3011         System.Collections.Generic.IEnumerator<System.Xml.Schema.XmlSchema> System.Collections.Generic.IEnumerable<System.Xml.Schema.XmlSchema>.GetEnumerator() { throw null; }
3012     }
XmlSerializationCollectionFixupCallback(object collection, object collectionItems)3013     public delegate void XmlSerializationCollectionFixupCallback(object collection, object collectionItems);
XmlSerializationFixupCallback(object fixup)3014     public delegate void XmlSerializationFixupCallback(object fixup);
3015     public abstract partial class XmlSerializationGeneratedCode
3016     {
XmlSerializationGeneratedCode()3017         protected XmlSerializationGeneratedCode() { }
3018     }
XmlSerializationReadCallback()3019     public delegate object XmlSerializationReadCallback();
3020     public abstract partial class XmlSerializationReader : System.Xml.Serialization.XmlSerializationGeneratedCode
3021     {
XmlSerializationReader()3022         protected XmlSerializationReader() { }
3023         protected bool DecodeName { get { throw null; } set { } }
3024         protected System.Xml.XmlDocument Document { get { throw null; } }
3025         protected bool IsReturnValue { get { throw null; } set { } }
3026         protected System.Xml.XmlReader Reader { get { throw null; } }
3027         protected int ReaderCount { get { throw null; } }
AddFixup(System.Xml.Serialization.XmlSerializationReader.CollectionFixup fixup)3028         protected void AddFixup(System.Xml.Serialization.XmlSerializationReader.CollectionFixup fixup) { }
AddFixup(System.Xml.Serialization.XmlSerializationReader.Fixup fixup)3029         protected void AddFixup(System.Xml.Serialization.XmlSerializationReader.Fixup fixup) { }
AddReadCallback(string name, string ns, System.Type type, System.Xml.Serialization.XmlSerializationReadCallback read)3030         protected void AddReadCallback(string name, string ns, System.Type type, System.Xml.Serialization.XmlSerializationReadCallback read) { }
AddTarget(string id, object o)3031         protected void AddTarget(string id, object o) { }
CheckReaderCount(ref int whileIterations, ref int readerCount)3032         protected void CheckReaderCount(ref int whileIterations, ref int readerCount) { }
CollapseWhitespace(string value)3033         protected string CollapseWhitespace(string value) { throw null; }
CreateAbstractTypeException(string name, string ns)3034         protected System.Exception CreateAbstractTypeException(string name, string ns) { throw null; }
CreateBadDerivationException(string xsdDerived, string nsDerived, string xsdBase, string nsBase, string clrDerived, string clrBase)3035         protected System.Exception CreateBadDerivationException(string xsdDerived, string nsDerived, string xsdBase, string nsBase, string clrDerived, string clrBase) { throw null; }
CreateCtorHasSecurityException(string typeName)3036         protected System.Exception CreateCtorHasSecurityException(string typeName) { throw null; }
CreateInaccessibleConstructorException(string typeName)3037         protected System.Exception CreateInaccessibleConstructorException(string typeName) { throw null; }
CreateInvalidCastException(System.Type type, object value)3038         protected System.Exception CreateInvalidCastException(System.Type type, object value) { throw null; }
CreateInvalidCastException(System.Type type, object value, string id)3039         protected System.Exception CreateInvalidCastException(System.Type type, object value, string id) { throw null; }
CreateMissingIXmlSerializableType(string name, string ns, string clrType)3040         protected System.Exception CreateMissingIXmlSerializableType(string name, string ns, string clrType) { throw null; }
CreateReadOnlyCollectionException(string name)3041         protected System.Exception CreateReadOnlyCollectionException(string name) { throw null; }
CreateUnknownConstantException(string value, System.Type enumType)3042         protected System.Exception CreateUnknownConstantException(string value, System.Type enumType) { throw null; }
CreateUnknownNodeException()3043         protected System.Exception CreateUnknownNodeException() { throw null; }
CreateUnknownTypeException(System.Xml.XmlQualifiedName type)3044         protected System.Exception CreateUnknownTypeException(System.Xml.XmlQualifiedName type) { throw null; }
EnsureArrayIndex(System.Array a, int index, System.Type elementType)3045         protected System.Array EnsureArrayIndex(System.Array a, int index, System.Type elementType) { throw null; }
FixupArrayRefs(object fixup)3046         protected void FixupArrayRefs(object fixup) { }
GetArrayLength(string name, string ns)3047         protected int GetArrayLength(string name, string ns) { throw null; }
GetNullAttr()3048         protected bool GetNullAttr() { throw null; }
GetTarget(string id)3049         protected object GetTarget(string id) { throw null; }
GetXsiType()3050         protected System.Xml.XmlQualifiedName GetXsiType() { throw null; }
InitCallbacks()3051         protected abstract void InitCallbacks();
InitIDs()3052         protected abstract void InitIDs();
IsXmlnsAttribute(string name)3053         protected bool IsXmlnsAttribute(string name) { throw null; }
ParseWsdlArrayType(System.Xml.XmlAttribute attr)3054         protected void ParseWsdlArrayType(System.Xml.XmlAttribute attr) { }
ReadElementQualifiedName()3055         protected System.Xml.XmlQualifiedName ReadElementQualifiedName() { throw null; }
ReadEndElement()3056         protected void ReadEndElement() { }
ReadNull()3057         protected bool ReadNull() { throw null; }
ReadNullableQualifiedName()3058         protected System.Xml.XmlQualifiedName ReadNullableQualifiedName() { throw null; }
ReadNullableString()3059         protected string ReadNullableString() { throw null; }
ReadReference(out string fixupReference)3060         protected bool ReadReference(out string fixupReference) { fixupReference = default(string); throw null; }
ReadReferencedElement()3061         protected object ReadReferencedElement() { throw null; }
ReadReferencedElement(string name, string ns)3062         protected object ReadReferencedElement(string name, string ns) { throw null; }
ReadReferencedElements()3063         protected void ReadReferencedElements() { }
ReadReferencingElement(string name, string ns, bool elementCanBeType, out string fixupReference)3064         protected object ReadReferencingElement(string name, string ns, bool elementCanBeType, out string fixupReference) { fixupReference = default(string); throw null; }
ReadReferencingElement(string name, string ns, out string fixupReference)3065         protected object ReadReferencingElement(string name, string ns, out string fixupReference) { fixupReference = default(string); throw null; }
ReadReferencingElement(out string fixupReference)3066         protected object ReadReferencingElement(out string fixupReference) { fixupReference = default(string); throw null; }
ReadSerializable(System.Xml.Serialization.IXmlSerializable serializable)3067         protected System.Xml.Serialization.IXmlSerializable ReadSerializable(System.Xml.Serialization.IXmlSerializable serializable) { throw null; }
ReadSerializable(System.Xml.Serialization.IXmlSerializable serializable, bool wrappedAny)3068         protected System.Xml.Serialization.IXmlSerializable ReadSerializable(System.Xml.Serialization.IXmlSerializable serializable, bool wrappedAny) { throw null; }
ReadString(string value)3069         protected string ReadString(string value) { throw null; }
ReadString(string value, bool trim)3070         protected string ReadString(string value, bool trim) { throw null; }
ReadTypedNull(System.Xml.XmlQualifiedName type)3071         protected object ReadTypedNull(System.Xml.XmlQualifiedName type) { throw null; }
ReadTypedPrimitive(System.Xml.XmlQualifiedName type)3072         protected object ReadTypedPrimitive(System.Xml.XmlQualifiedName type) { throw null; }
ReadXmlDocument(bool wrapped)3073         protected System.Xml.XmlDocument ReadXmlDocument(bool wrapped) { throw null; }
ReadXmlNode(bool wrapped)3074         protected System.Xml.XmlNode ReadXmlNode(bool wrapped) { throw null; }
Referenced(object o)3075         protected void Referenced(object o) { }
ResolveDynamicAssembly(string assemblyFullName)3076         protected static System.Reflection.Assembly ResolveDynamicAssembly(string assemblyFullName) { throw null; }
ShrinkArray(System.Array a, int length, System.Type elementType, bool isNullable)3077         protected System.Array ShrinkArray(System.Array a, int length, System.Type elementType, bool isNullable) { throw null; }
ToByteArrayBase64(bool isNull)3078         protected byte[] ToByteArrayBase64(bool isNull) { throw null; }
ToByteArrayBase64(string value)3079         protected static byte[] ToByteArrayBase64(string value) { throw null; }
ToByteArrayHex(bool isNull)3080         protected byte[] ToByteArrayHex(bool isNull) { throw null; }
ToByteArrayHex(string value)3081         protected static byte[] ToByteArrayHex(string value) { throw null; }
ToChar(string value)3082         protected static char ToChar(string value) { throw null; }
ToDate(string value)3083         protected static System.DateTime ToDate(string value) { throw null; }
ToDateTime(string value)3084         protected static System.DateTime ToDateTime(string value) { throw null; }
ToEnum(string value, System.Collections.Hashtable h, string typeName)3085         protected static long ToEnum(string value, System.Collections.Hashtable h, string typeName) { throw null; }
ToTime(string value)3086         protected static System.DateTime ToTime(string value) { throw null; }
ToXmlName(string value)3087         protected static string ToXmlName(string value) { throw null; }
ToXmlNCName(string value)3088         protected static string ToXmlNCName(string value) { throw null; }
ToXmlNmToken(string value)3089         protected static string ToXmlNmToken(string value) { throw null; }
ToXmlNmTokens(string value)3090         protected static string ToXmlNmTokens(string value) { throw null; }
ToXmlQualifiedName(string value)3091         protected System.Xml.XmlQualifiedName ToXmlQualifiedName(string value) { throw null; }
UnknownAttribute(object o, System.Xml.XmlAttribute attr)3092         protected void UnknownAttribute(object o, System.Xml.XmlAttribute attr) { }
UnknownAttribute(object o, System.Xml.XmlAttribute attr, string qnames)3093         protected void UnknownAttribute(object o, System.Xml.XmlAttribute attr, string qnames) { }
UnknownElement(object o, System.Xml.XmlElement elem)3094         protected void UnknownElement(object o, System.Xml.XmlElement elem) { }
UnknownElement(object o, System.Xml.XmlElement elem, string qnames)3095         protected void UnknownElement(object o, System.Xml.XmlElement elem, string qnames) { }
UnknownNode(object o)3096         protected void UnknownNode(object o) { }
UnknownNode(object o, string qnames)3097         protected void UnknownNode(object o, string qnames) { }
UnreferencedObject(string id, object o)3098         protected void UnreferencedObject(string id, object o) { }
3099         protected partial class CollectionFixup
3100         {
CollectionFixup(object collection, System.Xml.Serialization.XmlSerializationCollectionFixupCallback callback, object collectionItems)3101             public CollectionFixup(object collection, System.Xml.Serialization.XmlSerializationCollectionFixupCallback callback, object collectionItems) { }
3102             public System.Xml.Serialization.XmlSerializationCollectionFixupCallback Callback { get { throw null; } }
3103             public object Collection { get { throw null; } }
3104             public object CollectionItems { get { throw null; } }
3105         }
3106         protected partial class Fixup
3107         {
Fixup(object o, System.Xml.Serialization.XmlSerializationFixupCallback callback, int count)3108             public Fixup(object o, System.Xml.Serialization.XmlSerializationFixupCallback callback, int count) { }
Fixup(object o, System.Xml.Serialization.XmlSerializationFixupCallback callback, string[] ids)3109             public Fixup(object o, System.Xml.Serialization.XmlSerializationFixupCallback callback, string[] ids) { }
3110             public System.Xml.Serialization.XmlSerializationFixupCallback Callback { get { throw null; } }
3111             public string[] Ids { get { throw null; } }
3112             public object Source { get { throw null; } set { } }
3113         }
3114     }
XmlSerializationWriteCallback(object o)3115     public delegate void XmlSerializationWriteCallback(object o);
3116     public abstract partial class XmlSerializationWriter : System.Xml.Serialization.XmlSerializationGeneratedCode
3117     {
XmlSerializationWriter()3118         protected XmlSerializationWriter() { }
3119         protected bool EscapeName { get { throw null; } set { } }
3120         protected System.Collections.ArrayList Namespaces { get { throw null; } set { } }
3121         protected System.Xml.XmlWriter Writer { get { throw null; } set { } }
AddWriteCallback(System.Type type, string typeName, string typeNs, System.Xml.Serialization.XmlSerializationWriteCallback callback)3122         protected void AddWriteCallback(System.Type type, string typeName, string typeNs, System.Xml.Serialization.XmlSerializationWriteCallback callback) { }
CreateChoiceIdentifierValueException(string value, string identifier, string name, string ns)3123         protected System.Exception CreateChoiceIdentifierValueException(string value, string identifier, string name, string ns) { throw null; }
CreateInvalidAnyTypeException(object o)3124         protected System.Exception CreateInvalidAnyTypeException(object o) { throw null; }
CreateInvalidAnyTypeException(System.Type type)3125         protected System.Exception CreateInvalidAnyTypeException(System.Type type) { throw null; }
CreateInvalidChoiceIdentifierValueException(string type, string identifier)3126         protected System.Exception CreateInvalidChoiceIdentifierValueException(string type, string identifier) { throw null; }
CreateInvalidEnumValueException(object value, string typeName)3127         protected System.Exception CreateInvalidEnumValueException(object value, string typeName) { throw null; }
CreateMismatchChoiceException(string value, string elementName, string enumValue)3128         protected System.Exception CreateMismatchChoiceException(string value, string elementName, string enumValue) { throw null; }
CreateUnknownAnyElementException(string name, string ns)3129         protected System.Exception CreateUnknownAnyElementException(string name, string ns) { throw null; }
CreateUnknownTypeException(object o)3130         protected System.Exception CreateUnknownTypeException(object o) { throw null; }
CreateUnknownTypeException(System.Type type)3131         protected System.Exception CreateUnknownTypeException(System.Type type) { throw null; }
FromByteArrayBase64(byte[] value)3132         protected static byte[] FromByteArrayBase64(byte[] value) { throw null; }
FromByteArrayHex(byte[] value)3133         protected static string FromByteArrayHex(byte[] value) { throw null; }
FromChar(char value)3134         protected static string FromChar(char value) { throw null; }
FromDate(System.DateTime value)3135         protected static string FromDate(System.DateTime value) { throw null; }
FromDateTime(System.DateTime value)3136         protected static string FromDateTime(System.DateTime value) { throw null; }
FromEnum(long value, string[] values, long[] ids)3137         protected static string FromEnum(long value, string[] values, long[] ids) { throw null; }
FromEnum(long value, string[] values, long[] ids, string typeName)3138         protected static string FromEnum(long value, string[] values, long[] ids, string typeName) { throw null; }
FromTime(System.DateTime value)3139         protected static string FromTime(System.DateTime value) { throw null; }
FromXmlName(string name)3140         protected static string FromXmlName(string name) { throw null; }
FromXmlNCName(string ncName)3141         protected static string FromXmlNCName(string ncName) { throw null; }
FromXmlNmToken(string nmToken)3142         protected static string FromXmlNmToken(string nmToken) { throw null; }
FromXmlNmTokens(string nmTokens)3143         protected static string FromXmlNmTokens(string nmTokens) { throw null; }
FromXmlQualifiedName(System.Xml.XmlQualifiedName xmlQualifiedName)3144         protected string FromXmlQualifiedName(System.Xml.XmlQualifiedName xmlQualifiedName) { throw null; }
FromXmlQualifiedName(System.Xml.XmlQualifiedName xmlQualifiedName, bool ignoreEmpty)3145         protected string FromXmlQualifiedName(System.Xml.XmlQualifiedName xmlQualifiedName, bool ignoreEmpty) { throw null; }
InitCallbacks()3146         protected abstract void InitCallbacks();
ResolveDynamicAssembly(string assemblyFullName)3147         protected static System.Reflection.Assembly ResolveDynamicAssembly(string assemblyFullName) { throw null; }
TopLevelElement()3148         protected void TopLevelElement() { }
WriteAttribute(string localName, byte[] value)3149         protected void WriteAttribute(string localName, byte[] value) { }
WriteAttribute(string localName, string value)3150         protected void WriteAttribute(string localName, string value) { }
WriteAttribute(string localName, string ns, byte[] value)3151         protected void WriteAttribute(string localName, string ns, byte[] value) { }
WriteAttribute(string localName, string ns, string value)3152         protected void WriteAttribute(string localName, string ns, string value) { }
WriteAttribute(string prefix, string localName, string ns, string value)3153         protected void WriteAttribute(string prefix, string localName, string ns, string value) { }
WriteElementEncoded(System.Xml.XmlNode node, string name, string ns, bool isNullable, bool any)3154         protected void WriteElementEncoded(System.Xml.XmlNode node, string name, string ns, bool isNullable, bool any) { }
WriteElementLiteral(System.Xml.XmlNode node, string name, string ns, bool isNullable, bool any)3155         protected void WriteElementLiteral(System.Xml.XmlNode node, string name, string ns, bool isNullable, bool any) { }
WriteElementQualifiedName(string localName, string ns, System.Xml.XmlQualifiedName value)3156         protected void WriteElementQualifiedName(string localName, string ns, System.Xml.XmlQualifiedName value) { }
WriteElementQualifiedName(string localName, string ns, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType)3157         protected void WriteElementQualifiedName(string localName, string ns, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementQualifiedName(string localName, System.Xml.XmlQualifiedName value)3158         protected void WriteElementQualifiedName(string localName, System.Xml.XmlQualifiedName value) { }
WriteElementQualifiedName(string localName, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType)3159         protected void WriteElementQualifiedName(string localName, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementString(string localName, string value)3160         protected void WriteElementString(string localName, string value) { }
WriteElementString(string localName, string ns, string value)3161         protected void WriteElementString(string localName, string ns, string value) { }
WriteElementString(string localName, string ns, string value, System.Xml.XmlQualifiedName xsiType)3162         protected void WriteElementString(string localName, string ns, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementString(string localName, string value, System.Xml.XmlQualifiedName xsiType)3163         protected void WriteElementString(string localName, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementStringRaw(string localName, byte[] value)3164         protected void WriteElementStringRaw(string localName, byte[] value) { }
WriteElementStringRaw(string localName, byte[] value, System.Xml.XmlQualifiedName xsiType)3165         protected void WriteElementStringRaw(string localName, byte[] value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementStringRaw(string localName, string value)3166         protected void WriteElementStringRaw(string localName, string value) { }
WriteElementStringRaw(string localName, string ns, byte[] value)3167         protected void WriteElementStringRaw(string localName, string ns, byte[] value) { }
WriteElementStringRaw(string localName, string ns, byte[] value, System.Xml.XmlQualifiedName xsiType)3168         protected void WriteElementStringRaw(string localName, string ns, byte[] value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementStringRaw(string localName, string ns, string value)3169         protected void WriteElementStringRaw(string localName, string ns, string value) { }
WriteElementStringRaw(string localName, string ns, string value, System.Xml.XmlQualifiedName xsiType)3170         protected void WriteElementStringRaw(string localName, string ns, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteElementStringRaw(string localName, string value, System.Xml.XmlQualifiedName xsiType)3171         protected void WriteElementStringRaw(string localName, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteEmptyTag(string name)3172         protected void WriteEmptyTag(string name) { }
WriteEmptyTag(string name, string ns)3173         protected void WriteEmptyTag(string name, string ns) { }
WriteEndElement()3174         protected void WriteEndElement() { }
WriteEndElement(object o)3175         protected void WriteEndElement(object o) { }
WriteId(object o)3176         protected void WriteId(object o) { }
WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces xmlns)3177         protected void WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces xmlns) { }
WriteNullableQualifiedNameEncoded(string name, string ns, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType)3178         protected void WriteNullableQualifiedNameEncoded(string name, string ns, System.Xml.XmlQualifiedName value, System.Xml.XmlQualifiedName xsiType) { }
WriteNullableQualifiedNameLiteral(string name, string ns, System.Xml.XmlQualifiedName value)3179         protected void WriteNullableQualifiedNameLiteral(string name, string ns, System.Xml.XmlQualifiedName value) { }
WriteNullableStringEncoded(string name, string ns, string value, System.Xml.XmlQualifiedName xsiType)3180         protected void WriteNullableStringEncoded(string name, string ns, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteNullableStringEncodedRaw(string name, string ns, byte[] value, System.Xml.XmlQualifiedName xsiType)3181         protected void WriteNullableStringEncodedRaw(string name, string ns, byte[] value, System.Xml.XmlQualifiedName xsiType) { }
WriteNullableStringEncodedRaw(string name, string ns, string value, System.Xml.XmlQualifiedName xsiType)3182         protected void WriteNullableStringEncodedRaw(string name, string ns, string value, System.Xml.XmlQualifiedName xsiType) { }
WriteNullableStringLiteral(string name, string ns, string value)3183         protected void WriteNullableStringLiteral(string name, string ns, string value) { }
WriteNullableStringLiteralRaw(string name, string ns, byte[] value)3184         protected void WriteNullableStringLiteralRaw(string name, string ns, byte[] value) { }
WriteNullableStringLiteralRaw(string name, string ns, string value)3185         protected void WriteNullableStringLiteralRaw(string name, string ns, string value) { }
WriteNullTagEncoded(string name)3186         protected void WriteNullTagEncoded(string name) { }
WriteNullTagEncoded(string name, string ns)3187         protected void WriteNullTagEncoded(string name, string ns) { }
WriteNullTagLiteral(string name)3188         protected void WriteNullTagLiteral(string name) { }
WriteNullTagLiteral(string name, string ns)3189         protected void WriteNullTagLiteral(string name, string ns) { }
WritePotentiallyReferencingElement(string n, string ns, object o)3190         protected void WritePotentiallyReferencingElement(string n, string ns, object o) { }
WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType)3191         protected void WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType) { }
WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType, bool suppressReference)3192         protected void WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType, bool suppressReference) { }
WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType, bool suppressReference, bool isNullable)3193         protected void WritePotentiallyReferencingElement(string n, string ns, object o, System.Type ambientType, bool suppressReference, bool isNullable) { }
WriteReferencedElements()3194         protected void WriteReferencedElements() { }
WriteReferencingElement(string n, string ns, object o)3195         protected void WriteReferencingElement(string n, string ns, object o) { }
WriteReferencingElement(string n, string ns, object o, bool isNullable)3196         protected void WriteReferencingElement(string n, string ns, object o, bool isNullable) { }
WriteRpcResult(string name, string ns)3197         protected void WriteRpcResult(string name, string ns) { }
WriteSerializable(System.Xml.Serialization.IXmlSerializable serializable, string name, string ns, bool isNullable)3198         protected void WriteSerializable(System.Xml.Serialization.IXmlSerializable serializable, string name, string ns, bool isNullable) { }
WriteSerializable(System.Xml.Serialization.IXmlSerializable serializable, string name, string ns, bool isNullable, bool wrapped)3199         protected void WriteSerializable(System.Xml.Serialization.IXmlSerializable serializable, string name, string ns, bool isNullable, bool wrapped) { }
WriteStartDocument()3200         protected void WriteStartDocument() { }
WriteStartElement(string name)3201         protected void WriteStartElement(string name) { }
WriteStartElement(string name, string ns)3202         protected void WriteStartElement(string name, string ns) { }
WriteStartElement(string name, string ns, bool writePrefixed)3203         protected void WriteStartElement(string name, string ns, bool writePrefixed) { }
WriteStartElement(string name, string ns, object o)3204         protected void WriteStartElement(string name, string ns, object o) { }
WriteStartElement(string name, string ns, object o, bool writePrefixed)3205         protected void WriteStartElement(string name, string ns, object o, bool writePrefixed) { }
WriteStartElement(string name, string ns, object o, bool writePrefixed, System.Xml.Serialization.XmlSerializerNamespaces xmlns)3206         protected void WriteStartElement(string name, string ns, object o, bool writePrefixed, System.Xml.Serialization.XmlSerializerNamespaces xmlns) { }
WriteTypedPrimitive(string name, string ns, object o, bool xsiType)3207         protected void WriteTypedPrimitive(string name, string ns, object o, bool xsiType) { }
WriteValue(byte[] value)3208         protected void WriteValue(byte[] value) { }
WriteValue(string value)3209         protected void WriteValue(string value) { }
WriteXmlAttribute(System.Xml.XmlNode node)3210         protected void WriteXmlAttribute(System.Xml.XmlNode node) { }
WriteXmlAttribute(System.Xml.XmlNode node, object container)3211         protected void WriteXmlAttribute(System.Xml.XmlNode node, object container) { }
WriteXsiType(string name, string ns)3212         protected void WriteXsiType(string name, string ns) { }
3213     }
3214     public partial class XmlSerializer
3215     {
XmlSerializer()3216         protected XmlSerializer() { }
XmlSerializer(System.Type type)3217         public XmlSerializer(System.Type type) { }
XmlSerializer(System.Type type, string defaultNamespace)3218         public XmlSerializer(System.Type type, string defaultNamespace) { }
XmlSerializer(System.Type type, System.Type[] extraTypes)3219         public XmlSerializer(System.Type type, System.Type[] extraTypes) { }
XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides)3220         public XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides) { }
XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace)3221         public XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace) { }
XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location)3222         public XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location) { }
3223         [System.ObsoleteAttribute("This method is obsolete and will be removed in a future release of the .NET Framework. Please use a XmlSerializer constructor overload which does not take an Evidence parameter. See http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")]
XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location, System.Security.Policy.Evidence evidence)3224         public XmlSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location, System.Security.Policy.Evidence evidence) { }
XmlSerializer(System.Type type, System.Xml.Serialization.XmlRootAttribute root)3225         public XmlSerializer(System.Type type, System.Xml.Serialization.XmlRootAttribute root) { }
XmlSerializer(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)3226         public XmlSerializer(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { }
3227         public event System.Xml.Serialization.XmlAttributeEventHandler UnknownAttribute { add { } remove { } }
3228         public event System.Xml.Serialization.XmlElementEventHandler UnknownElement { add { } remove { } }
3229         public event System.Xml.Serialization.XmlNodeEventHandler UnknownNode { add { } remove { } }
3230         public event System.Xml.Serialization.UnreferencedObjectEventHandler UnreferencedObject { add { } remove { } }
CanDeserialize(System.Xml.XmlReader xmlReader)3231         public virtual bool CanDeserialize(System.Xml.XmlReader xmlReader) { throw null; }
CreateReader()3232         protected virtual System.Xml.Serialization.XmlSerializationReader CreateReader() { throw null; }
CreateWriter()3233         protected virtual System.Xml.Serialization.XmlSerializationWriter CreateWriter() { throw null; }
Deserialize(System.IO.Stream stream)3234         public object Deserialize(System.IO.Stream stream) { throw null; }
Deserialize(System.IO.TextReader textReader)3235         public object Deserialize(System.IO.TextReader textReader) { throw null; }
Deserialize(System.Xml.Serialization.XmlSerializationReader reader)3236         protected virtual object Deserialize(System.Xml.Serialization.XmlSerializationReader reader) { throw null; }
Deserialize(System.Xml.XmlReader xmlReader)3237         public object Deserialize(System.Xml.XmlReader xmlReader) { throw null; }
Deserialize(System.Xml.XmlReader xmlReader, string encodingStyle)3238         public object Deserialize(System.Xml.XmlReader xmlReader, string encodingStyle) { throw null; }
Deserialize(System.Xml.XmlReader xmlReader, string encodingStyle, System.Xml.Serialization.XmlDeserializationEvents events)3239         public object Deserialize(System.Xml.XmlReader xmlReader, string encodingStyle, System.Xml.Serialization.XmlDeserializationEvents events) { throw null; }
Deserialize(System.Xml.XmlReader xmlReader, System.Xml.Serialization.XmlDeserializationEvents events)3240         public object Deserialize(System.Xml.XmlReader xmlReader, System.Xml.Serialization.XmlDeserializationEvents events) { throw null; }
3241         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
FromMappings(System.Xml.Serialization.XmlMapping[] mappings)3242         public static System.Xml.Serialization.XmlSerializer[] FromMappings(System.Xml.Serialization.XmlMapping[] mappings) { throw null; }
3243         [System.ObsoleteAttribute("This method is obsolete and will be removed in a future release of the .NET Framework. Please use an overload of FromMappings which does not take an Evidence parameter. See http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")]
3244         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
FromMappings(System.Xml.Serialization.XmlMapping[] mappings, System.Security.Policy.Evidence evidence)3245         public static System.Xml.Serialization.XmlSerializer[] FromMappings(System.Xml.Serialization.XmlMapping[] mappings, System.Security.Policy.Evidence evidence) { throw null; }
3246         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
FromMappings(System.Xml.Serialization.XmlMapping[] mappings, System.Type type)3247         public static System.Xml.Serialization.XmlSerializer[] FromMappings(System.Xml.Serialization.XmlMapping[] mappings, System.Type type) { throw null; }
FromTypes(System.Type[] types)3248         public static System.Xml.Serialization.XmlSerializer[] FromTypes(System.Type[] types) { throw null; }
3249         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]
GenerateSerializer(System.Type[] types, System.Xml.Serialization.XmlMapping[] mappings)3250         public static System.Reflection.Assembly GenerateSerializer(System.Type[] types, System.Xml.Serialization.XmlMapping[] mappings) { throw null; }
3251         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
GenerateSerializer(System.Type[] types, System.Xml.Serialization.XmlMapping[] mappings, System.CodeDom.Compiler.CompilerParameters parameters)3252         public static System.Reflection.Assembly GenerateSerializer(System.Type[] types, System.Xml.Serialization.XmlMapping[] mappings, System.CodeDom.Compiler.CompilerParameters parameters) { throw null; }
3253         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
GetXmlSerializerAssemblyName(System.Type type)3254         public static string GetXmlSerializerAssemblyName(System.Type type) { throw null; }
3255         [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
GetXmlSerializerAssemblyName(System.Type type, string defaultNamespace)3256         public static string GetXmlSerializerAssemblyName(System.Type type, string defaultNamespace) { throw null; }
Serialize(System.IO.Stream stream, object o)3257         public void Serialize(System.IO.Stream stream, object o) { }
Serialize(System.IO.Stream stream, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces)3258         public void Serialize(System.IO.Stream stream, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces) { }
Serialize(System.IO.TextWriter textWriter, object o)3259         public void Serialize(System.IO.TextWriter textWriter, object o) { }
Serialize(System.IO.TextWriter textWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces)3260         public void Serialize(System.IO.TextWriter textWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces) { }
Serialize(object o, System.Xml.Serialization.XmlSerializationWriter writer)3261         protected virtual void Serialize(object o, System.Xml.Serialization.XmlSerializationWriter writer) { }
Serialize(System.Xml.XmlWriter xmlWriter, object o)3262         public void Serialize(System.Xml.XmlWriter xmlWriter, object o) { }
Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces)3263         public void Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces) { }
Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces, string encodingStyle)3264         public void Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces, string encodingStyle) { }
Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces, string encodingStyle, string id)3265         public void Serialize(System.Xml.XmlWriter xmlWriter, object o, System.Xml.Serialization.XmlSerializerNamespaces namespaces, string encodingStyle, string id) { }
3266     }
3267     [System.AttributeUsageAttribute((System.AttributeTargets)(1052), AllowMultiple=false)]
3268     public sealed partial class XmlSerializerAssemblyAttribute : System.Attribute
3269     {
XmlSerializerAssemblyAttribute()3270         public XmlSerializerAssemblyAttribute() { }
XmlSerializerAssemblyAttribute(string assemblyName)3271         public XmlSerializerAssemblyAttribute(string assemblyName) { }
XmlSerializerAssemblyAttribute(string assemblyName, string codeBase)3272         public XmlSerializerAssemblyAttribute(string assemblyName, string codeBase) { }
3273         public string AssemblyName { get { throw null; } set { } }
3274         public string CodeBase { get { throw null; } set { } }
3275     }
3276     public partial class XmlSerializerFactory
3277     {
XmlSerializerFactory()3278         public XmlSerializerFactory() { }
CreateSerializer(System.Type type)3279         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type) { throw null; }
CreateSerializer(System.Type type, string defaultNamespace)3280         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, string defaultNamespace) { throw null; }
CreateSerializer(System.Type type, System.Type[] extraTypes)3281         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Type[] extraTypes) { throw null; }
CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides)3282         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides) { throw null; }
CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace)3283         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace) { throw null; }
CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location)3284         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location) { throw null; }
3285         [System.ObsoleteAttribute("This method is obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateSerializer which does not take an Evidence parameter. See http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")]
CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location, System.Security.Policy.Evidence evidence)3286         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Xml.Serialization.XmlAttributeOverrides overrides, System.Type[] extraTypes, System.Xml.Serialization.XmlRootAttribute root, string defaultNamespace, string location, System.Security.Policy.Evidence evidence) { throw null; }
CreateSerializer(System.Type type, System.Xml.Serialization.XmlRootAttribute root)3287         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Type type, System.Xml.Serialization.XmlRootAttribute root) { throw null; }
CreateSerializer(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping)3288         public System.Xml.Serialization.XmlSerializer CreateSerializer(System.Xml.Serialization.XmlTypeMapping xmlTypeMapping) { throw null; }
3289     }
3290     public abstract partial class XmlSerializerImplementation
3291     {
XmlSerializerImplementation()3292         protected XmlSerializerImplementation() { }
3293         public virtual System.Xml.Serialization.XmlSerializationReader Reader { get { throw null; } }
3294         public virtual System.Collections.Hashtable ReadMethods { get { throw null; } }
3295         public virtual System.Collections.Hashtable TypedSerializers { get { throw null; } }
3296         public virtual System.Collections.Hashtable WriteMethods { get { throw null; } }
3297         public virtual System.Xml.Serialization.XmlSerializationWriter Writer { get { throw null; } }
CanSerialize(System.Type type)3298         public virtual bool CanSerialize(System.Type type) { throw null; }
GetSerializer(System.Type type)3299         public virtual System.Xml.Serialization.XmlSerializer GetSerializer(System.Type type) { throw null; }
3300     }
3301     public partial class XmlSerializerNamespaces
3302     {
XmlSerializerNamespaces()3303         public XmlSerializerNamespaces() { }
XmlSerializerNamespaces(System.Xml.Serialization.XmlSerializerNamespaces namespaces)3304         public XmlSerializerNamespaces(System.Xml.Serialization.XmlSerializerNamespaces namespaces) { }
XmlSerializerNamespaces(System.Xml.XmlQualifiedName[] namespaces)3305         public XmlSerializerNamespaces(System.Xml.XmlQualifiedName[] namespaces) { }
3306         public int Count { get { throw null; } }
Add(string prefix, string ns)3307         public void Add(string prefix, string ns) { }
ToArray()3308         public System.Xml.XmlQualifiedName[] ToArray() { throw null; }
3309     }
3310     [System.AttributeUsageAttribute((System.AttributeTargets)(1))]
3311     public sealed partial class XmlSerializerVersionAttribute : System.Attribute
3312     {
XmlSerializerVersionAttribute()3313         public XmlSerializerVersionAttribute() { }
XmlSerializerVersionAttribute(System.Type type)3314         public XmlSerializerVersionAttribute(System.Type type) { }
3315         public string Namespace { get { throw null; } set { } }
3316         public string ParentAssemblyId { get { throw null; } set { } }
3317         public System.Type Type { get { throw null; } set { } }
3318         public string Version { get { throw null; } set { } }
3319     }
3320     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
3321     public partial class XmlTextAttribute : System.Attribute
3322     {
XmlTextAttribute()3323         public XmlTextAttribute() { }
XmlTextAttribute(System.Type type)3324         public XmlTextAttribute(System.Type type) { }
3325         public string DataType { get { throw null; } set { } }
3326         public System.Type Type { get { throw null; } set { } }
3327     }
3328     [System.AttributeUsageAttribute((System.AttributeTargets)(1052))]
3329     public partial class XmlTypeAttribute : System.Attribute
3330     {
XmlTypeAttribute()3331         public XmlTypeAttribute() { }
XmlTypeAttribute(string typeName)3332         public XmlTypeAttribute(string typeName) { }
3333         public bool AnonymousType { get { throw null; } set { } }
3334         public bool IncludeInSchema { get { throw null; } set { } }
3335         public string Namespace { get { throw null; } set { } }
3336         public string TypeName { get { throw null; } set { } }
3337     }
3338     public partial class XmlTypeMapping : System.Xml.Serialization.XmlMapping
3339     {
XmlTypeMapping()3340         internal XmlTypeMapping() { }
3341         public string TypeFullName { get { throw null; } }
3342         public string TypeName { get { throw null; } }
3343         public string XsdTypeName { get { throw null; } }
3344         public string XsdTypeNamespace { get { throw null; } }
3345     }
3346 }
3347 namespace System.Xml.Serialization.Advanced
3348 {
3349     public abstract partial class SchemaImporterExtension
3350     {
SchemaImporterExtension()3351         protected SchemaImporterExtension() { }
ImportAnyElement(System.Xml.Schema.XmlSchemaAny any, bool mixed, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)3352         public virtual string ImportAnyElement(System.Xml.Schema.XmlSchemaAny any, bool mixed, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
ImportDefaultValue(string value, string type)3353         public virtual System.CodeDom.CodeExpression ImportDefaultValue(string value, string type) { throw null; }
ImportSchemaType(string name, string ns, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)3354         public virtual string ImportSchemaType(string name, string ns, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider)3355         public virtual string ImportSchemaType(System.Xml.Schema.XmlSchemaType type, System.Xml.Schema.XmlSchemaObject context, System.Xml.Serialization.XmlSchemas schemas, System.Xml.Serialization.XmlSchemaImporter importer, System.CodeDom.CodeCompileUnit compileUnit, System.CodeDom.CodeNamespace mainNamespace, System.Xml.Serialization.CodeGenerationOptions options, System.CodeDom.Compiler.CodeDomProvider codeProvider) { throw null; }
3356     }
3357     public partial class SchemaImporterExtensionCollection : System.Collections.CollectionBase
3358     {
SchemaImporterExtensionCollection()3359         public SchemaImporterExtensionCollection() { }
3360         public System.Xml.Serialization.Advanced.SchemaImporterExtension this[int index] { get { throw null; } set { } }
Add(string name, System.Type type)3361         public int Add(string name, System.Type type) { throw null; }
Add(System.Xml.Serialization.Advanced.SchemaImporterExtension extension)3362         public int Add(System.Xml.Serialization.Advanced.SchemaImporterExtension extension) { throw null; }
Clear()3363         public new void Clear() { }
Contains(System.Xml.Serialization.Advanced.SchemaImporterExtension extension)3364         public bool Contains(System.Xml.Serialization.Advanced.SchemaImporterExtension extension) { throw null; }
CopyTo(System.Xml.Serialization.Advanced.SchemaImporterExtension[] array, int index)3365         public void CopyTo(System.Xml.Serialization.Advanced.SchemaImporterExtension[] array, int index) { }
IndexOf(System.Xml.Serialization.Advanced.SchemaImporterExtension extension)3366         public int IndexOf(System.Xml.Serialization.Advanced.SchemaImporterExtension extension) { throw null; }
Insert(int index, System.Xml.Serialization.Advanced.SchemaImporterExtension extension)3367         public void Insert(int index, System.Xml.Serialization.Advanced.SchemaImporterExtension extension) { }
Remove(string name)3368         public void Remove(string name) { }
Remove(System.Xml.Serialization.Advanced.SchemaImporterExtension extension)3369         public void Remove(System.Xml.Serialization.Advanced.SchemaImporterExtension extension) { }
3370     }
3371 }
3372 #if CONFIG_DEP
3373 namespace System.Xml.Serialization.Configuration
3374 {
3375     public sealed partial class DateTimeSerializationSection : System.Configuration.ConfigurationSection
3376     {
DateTimeSerializationSection()3377         public DateTimeSerializationSection() { }
3378         [System.Configuration.ConfigurationPropertyAttribute("mode", DefaultValue=(System.Xml.Serialization.Configuration.DateTimeSerializationSection.DateTimeSerializationMode)(1))]
3379         public System.Xml.Serialization.Configuration.DateTimeSerializationSection.DateTimeSerializationMode Mode { get { throw null; } set { } }
3380         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
3381         public enum DateTimeSerializationMode
3382         {
3383             Default = 0,
3384             Local = 2,
3385             Roundtrip = 1,
3386         }
3387     }
3388     public partial class RootedPathValidator : System.Configuration.ConfigurationValidatorBase
3389     {
RootedPathValidator()3390         public RootedPathValidator() { }
CanValidate(System.Type type)3391         public override bool CanValidate(System.Type type) { throw null; }
Validate(object value)3392         public override void Validate(object value) { }
3393     }
3394     public sealed partial class SchemaImporterExtensionElement : System.Configuration.ConfigurationElement
3395     {
SchemaImporterExtensionElement()3396         public SchemaImporterExtensionElement() { }
SchemaImporterExtensionElement(string name, string type)3397         public SchemaImporterExtensionElement(string name, string type) { }
SchemaImporterExtensionElement(string name, System.Type type)3398         public SchemaImporterExtensionElement(string name, System.Type type) { }
3399         [System.Configuration.ConfigurationPropertyAttribute("name", IsRequired=true, IsKey=true)]
3400         public string Name { get { throw null; } set { } }
3401         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
3402         [System.ComponentModel.TypeConverterAttribute("System.Xml.Serialization.Configuration.SchemaImporterExtensionElement.TypeTypeConverter")]
3403         [System.Configuration.ConfigurationPropertyAttribute("type", IsRequired=true, IsKey=false)]
3404         public System.Type Type { get { throw null; } set { } }
3405     }
3406     [System.Configuration.ConfigurationCollectionAttribute(typeof(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement))]
3407     public sealed partial class SchemaImporterExtensionElementCollection : System.Configuration.ConfigurationElementCollection
3408     {
SchemaImporterExtensionElementCollection()3409         public SchemaImporterExtensionElementCollection() { }
3410         public System.Xml.Serialization.Configuration.SchemaImporterExtensionElement this[int index] { get { throw null; } set { } }
3411         public new System.Xml.Serialization.Configuration.SchemaImporterExtensionElement this[string name] { get { throw null; } set { } }
Add(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element)3412         public void Add(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element) { }
Clear()3413         public void Clear() { }
CreateNewElement()3414         protected override System.Configuration.ConfigurationElement CreateNewElement() { throw null; }
GetElementKey(System.Configuration.ConfigurationElement element)3415         protected override object GetElementKey(System.Configuration.ConfigurationElement element) { throw null; }
IndexOf(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element)3416         public int IndexOf(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element) { throw null; }
Remove(string name)3417         public void Remove(string name) { }
Remove(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element)3418         public void Remove(System.Xml.Serialization.Configuration.SchemaImporterExtensionElement element) { }
RemoveAt(int index)3419         public void RemoveAt(int index) { }
3420     }
3421     public sealed partial class SchemaImporterExtensionsSection : System.Configuration.ConfigurationSection
3422     {
SchemaImporterExtensionsSection()3423         public SchemaImporterExtensionsSection() { }
3424         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
3425         [System.Configuration.ConfigurationPropertyAttribute("", IsDefaultCollection=true)]
3426         public System.Xml.Serialization.Configuration.SchemaImporterExtensionElementCollection SchemaImporterExtensions { get { throw null; } }
InitializeDefault()3427         protected override void InitializeDefault() { }
3428     }
3429     public sealed partial class SerializationSectionGroup : System.Configuration.ConfigurationSectionGroup
3430     {
SerializationSectionGroup()3431         public SerializationSectionGroup() { }
3432         [System.Configuration.ConfigurationPropertyAttribute("dateTimeSerialization")]
3433         public System.Xml.Serialization.Configuration.DateTimeSerializationSection DateTimeSerialization { get { throw null; } }
3434         [System.Configuration.ConfigurationPropertyAttribute("schemaImporterExtensions")]
3435         public System.Xml.Serialization.Configuration.SchemaImporterExtensionsSection SchemaImporterExtensions { get { throw null; } }
3436         public System.Xml.Serialization.Configuration.XmlSerializerSection XmlSerializer { get { throw null; } }
3437     }
3438     public sealed partial class XmlSerializerSection : System.Configuration.ConfigurationSection
3439     {
XmlSerializerSection()3440         public XmlSerializerSection() { }
3441         [System.Configuration.ConfigurationPropertyAttribute("checkDeserializeAdvances", DefaultValue=false)]
3442         public bool CheckDeserializeAdvances { get { throw null; } set { } }
3443         protected override System.Configuration.ConfigurationPropertyCollection Properties { get { throw null; } }
3444         [System.Configuration.ConfigurationPropertyAttribute("tempFilesLocation", DefaultValue=null)]
3445         public string TempFilesLocation { get { throw null; } set { } }
3446         [System.Configuration.ConfigurationPropertyAttribute("useLegacySerializerGeneration", DefaultValue=false)]
3447         public bool UseLegacySerializerGeneration { get { throw null; } set { } }
3448     }
3449 }
3450 namespace System.Xml.XmlConfiguration
3451 {
3452     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3453     public sealed partial class XmlReaderSection : System.Configuration.ConfigurationSection
3454     {
XmlReaderSection()3455         public XmlReaderSection() { }
3456         [System.Configuration.ConfigurationPropertyAttribute("prohibitDefaultResolver", DefaultValue="false")]
3457         public string ProhibitDefaultResolverString { get { throw null; } set { } }
3458     }
3459     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3460     public sealed partial class XsltConfigSection : System.Configuration.ConfigurationSection
3461     {
XsltConfigSection()3462         public XsltConfigSection() { }
3463         [System.Configuration.ConfigurationPropertyAttribute("prohibitDefaultResolver", DefaultValue="false")]
3464         public string ProhibitDefaultResolverString { get { throw null; } set { } }
3465     }
3466 }
3467 #endif
3468 namespace System.Xml.XPath
3469 {
3470     public partial interface IXPathNavigable
3471     {
CreateNavigator()3472         System.Xml.XPath.XPathNavigator CreateNavigator();
3473     }
3474     public enum XmlCaseOrder
3475     {
3476         LowerFirst = 2,
3477         None = 0,
3478         UpperFirst = 1,
3479     }
3480     public enum XmlDataType
3481     {
3482         Number = 2,
3483         Text = 1,
3484     }
3485     public enum XmlSortOrder
3486     {
3487         Ascending = 1,
3488         Descending = 2,
3489     }
3490     public partial class XPathDocument : System.Xml.XPath.IXPathNavigable
3491     {
XPathDocument(System.IO.Stream stream)3492         public XPathDocument(System.IO.Stream stream) { }
XPathDocument(System.IO.TextReader textReader)3493         public XPathDocument(System.IO.TextReader textReader) { }
XPathDocument(string uri)3494         public XPathDocument(string uri) { }
XPathDocument(string uri, System.Xml.XmlSpace space)3495         public XPathDocument(string uri, System.Xml.XmlSpace space) { }
XPathDocument(System.Xml.XmlReader reader)3496         public XPathDocument(System.Xml.XmlReader reader) { }
XPathDocument(System.Xml.XmlReader reader, System.Xml.XmlSpace space)3497         public XPathDocument(System.Xml.XmlReader reader, System.Xml.XmlSpace space) { }
CreateNavigator()3498         public System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
3499     }
3500     [System.SerializableAttribute]
3501     public partial class XPathException : System.SystemException
3502     {
XPathException()3503         public XPathException() { }
XPathException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3504         protected XPathException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XPathException(string message)3505         public XPathException(string message) { }
XPathException(string message, System.Exception innerException)3506         public XPathException(string message, System.Exception innerException) { }
3507         public override string Message { get { throw null; } }
3508         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3509         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3510     }
3511     public abstract partial class XPathExpression
3512     {
XPathExpression()3513         internal XPathExpression() { }
3514         public abstract string Expression { get; }
3515         public abstract System.Xml.XPath.XPathResultType ReturnType { get; }
AddSort(object expr, System.Collections.IComparer comparer)3516         public abstract void AddSort(object expr, System.Collections.IComparer comparer);
AddSort(object expr, System.Xml.XPath.XmlSortOrder order, System.Xml.XPath.XmlCaseOrder caseOrder, string lang, System.Xml.XPath.XmlDataType dataType)3517         public abstract void AddSort(object expr, System.Xml.XPath.XmlSortOrder order, System.Xml.XPath.XmlCaseOrder caseOrder, string lang, System.Xml.XPath.XmlDataType dataType);
Clone()3518         public abstract System.Xml.XPath.XPathExpression Clone();
Compile(string xpath)3519         public static System.Xml.XPath.XPathExpression Compile(string xpath) { throw null; }
Compile(string xpath, System.Xml.IXmlNamespaceResolver nsResolver)3520         public static System.Xml.XPath.XPathExpression Compile(string xpath, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
SetContext(System.Xml.IXmlNamespaceResolver nsResolver)3521         public abstract void SetContext(System.Xml.IXmlNamespaceResolver nsResolver);
SetContext(System.Xml.XmlNamespaceManager nsManager)3522         public abstract void SetContext(System.Xml.XmlNamespaceManager nsManager);
3523     }
3524     public abstract partial class XPathItem
3525     {
XPathItem()3526         protected XPathItem() { }
3527         public abstract bool IsNode { get; }
3528         public abstract object TypedValue { get; }
3529         public abstract string Value { get; }
3530         public abstract bool ValueAsBoolean { get; }
3531         public abstract System.DateTime ValueAsDateTime { get; }
3532         public abstract double ValueAsDouble { get; }
3533         public abstract int ValueAsInt { get; }
3534         public abstract long ValueAsLong { get; }
3535         public abstract System.Type ValueType { get; }
3536         public abstract System.Xml.Schema.XmlSchemaType XmlType { get; }
ValueAs(System.Type returnType)3537         public virtual object ValueAs(System.Type returnType) { throw null; }
ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver)3538         public abstract object ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver);
3539     }
3540     public enum XPathNamespaceScope
3541     {
3542         All = 0,
3543         ExcludeXml = 1,
3544         Local = 2,
3545     }
3546     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
3547     public abstract partial class XPathNavigator : System.Xml.XPath.XPathItem, System.ICloneable, System.Xml.IXmlNamespaceResolver, System.Xml.XPath.IXPathNavigable
3548     {
XPathNavigator()3549         protected XPathNavigator() { }
3550         public abstract string BaseURI { get; }
3551         public virtual bool CanEdit { get { throw null; } }
3552         public virtual bool HasAttributes { get { throw null; } }
3553         public virtual bool HasChildren { get { throw null; } }
3554         public virtual string InnerXml { get { throw null; } set { } }
3555         public abstract bool IsEmptyElement { get; }
3556         public sealed override bool IsNode { get { throw null; } }
3557         public abstract string LocalName { get; }
3558         public abstract string Name { get; }
3559         public abstract string NamespaceURI { get; }
3560         public abstract System.Xml.XmlNameTable NameTable { get; }
3561         public static System.Collections.IEqualityComparer NavigatorComparer { get { throw null; } }
3562         public abstract System.Xml.XPath.XPathNodeType NodeType { get; }
3563         public virtual string OuterXml { get { throw null; } set { } }
3564         public abstract string Prefix { get; }
3565         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
3566         public override object TypedValue { get { throw null; } }
3567         public virtual object UnderlyingObject { get { throw null; } }
3568         public override bool ValueAsBoolean { get { throw null; } }
3569         public override System.DateTime ValueAsDateTime { get { throw null; } }
3570         public override double ValueAsDouble { get { throw null; } }
3571         public override int ValueAsInt { get { throw null; } }
3572         public override long ValueAsLong { get { throw null; } }
3573         public override System.Type ValueType { get { throw null; } }
3574         public virtual string XmlLang { get { throw null; } }
3575         public override System.Xml.Schema.XmlSchemaType XmlType { get { throw null; } }
AppendChild()3576         public virtual System.Xml.XmlWriter AppendChild() { throw null; }
AppendChild(string newChild)3577         public virtual void AppendChild(string newChild) { }
AppendChild(System.Xml.XmlReader newChild)3578         public virtual void AppendChild(System.Xml.XmlReader newChild) { }
AppendChild(System.Xml.XPath.XPathNavigator newChild)3579         public virtual void AppendChild(System.Xml.XPath.XPathNavigator newChild) { }
AppendChildElement(string prefix, string localName, string namespaceURI, string value)3580         public virtual void AppendChildElement(string prefix, string localName, string namespaceURI, string value) { }
CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler)3581         public virtual bool CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Clone()3582         public abstract System.Xml.XPath.XPathNavigator Clone();
ComparePosition(System.Xml.XPath.XPathNavigator nav)3583         public virtual System.Xml.XmlNodeOrder ComparePosition(System.Xml.XPath.XPathNavigator nav) { throw null; }
Compile(string xpath)3584         public virtual System.Xml.XPath.XPathExpression Compile(string xpath) { throw null; }
CreateAttribute(string prefix, string localName, string namespaceURI, string value)3585         public virtual void CreateAttribute(string prefix, string localName, string namespaceURI, string value) { }
CreateAttributes()3586         public virtual System.Xml.XmlWriter CreateAttributes() { throw null; }
CreateNavigator()3587         public virtual System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
DeleteRange(System.Xml.XPath.XPathNavigator lastSiblingToDelete)3588         public virtual void DeleteRange(System.Xml.XPath.XPathNavigator lastSiblingToDelete) { }
DeleteSelf()3589         public virtual void DeleteSelf() { }
Evaluate(string xpath)3590         public virtual object Evaluate(string xpath) { throw null; }
Evaluate(string xpath, System.Xml.IXmlNamespaceResolver resolver)3591         public virtual object Evaluate(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
Evaluate(System.Xml.XPath.XPathExpression expr)3592         public virtual object Evaluate(System.Xml.XPath.XPathExpression expr) { throw null; }
Evaluate(System.Xml.XPath.XPathExpression expr, System.Xml.XPath.XPathNodeIterator context)3593         public virtual object Evaluate(System.Xml.XPath.XPathExpression expr, System.Xml.XPath.XPathNodeIterator context) { throw null; }
GetAttribute(string localName, string namespaceURI)3594         public virtual string GetAttribute(string localName, string namespaceURI) { throw null; }
GetNamespace(string name)3595         public virtual string GetNamespace(string name) { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)3596         public virtual System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
InsertAfter()3597         public virtual System.Xml.XmlWriter InsertAfter() { throw null; }
InsertAfter(string newSibling)3598         public virtual void InsertAfter(string newSibling) { }
InsertAfter(System.Xml.XmlReader newSibling)3599         public virtual void InsertAfter(System.Xml.XmlReader newSibling) { }
InsertAfter(System.Xml.XPath.XPathNavigator newSibling)3600         public virtual void InsertAfter(System.Xml.XPath.XPathNavigator newSibling) { }
InsertBefore()3601         public virtual System.Xml.XmlWriter InsertBefore() { throw null; }
InsertBefore(string newSibling)3602         public virtual void InsertBefore(string newSibling) { }
InsertBefore(System.Xml.XmlReader newSibling)3603         public virtual void InsertBefore(System.Xml.XmlReader newSibling) { }
InsertBefore(System.Xml.XPath.XPathNavigator newSibling)3604         public virtual void InsertBefore(System.Xml.XPath.XPathNavigator newSibling) { }
InsertElementAfter(string prefix, string localName, string namespaceURI, string value)3605         public virtual void InsertElementAfter(string prefix, string localName, string namespaceURI, string value) { }
InsertElementBefore(string prefix, string localName, string namespaceURI, string value)3606         public virtual void InsertElementBefore(string prefix, string localName, string namespaceURI, string value) { }
IsDescendant(System.Xml.XPath.XPathNavigator nav)3607         public virtual bool IsDescendant(System.Xml.XPath.XPathNavigator nav) { throw null; }
IsSamePosition(System.Xml.XPath.XPathNavigator other)3608         public abstract bool IsSamePosition(System.Xml.XPath.XPathNavigator other);
LookupNamespace(string prefix)3609         public virtual string LookupNamespace(string prefix) { throw null; }
LookupPrefix(string namespaceURI)3610         public virtual string LookupPrefix(string namespaceURI) { throw null; }
Matches(string xpath)3611         public virtual bool Matches(string xpath) { throw null; }
Matches(System.Xml.XPath.XPathExpression expr)3612         public virtual bool Matches(System.Xml.XPath.XPathExpression expr) { throw null; }
MoveTo(System.Xml.XPath.XPathNavigator other)3613         public abstract bool MoveTo(System.Xml.XPath.XPathNavigator other);
MoveToAttribute(string localName, string namespaceURI)3614         public virtual bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToChild(string localName, string namespaceURI)3615         public virtual bool MoveToChild(string localName, string namespaceURI) { throw null; }
MoveToChild(System.Xml.XPath.XPathNodeType type)3616         public virtual bool MoveToChild(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToFirst()3617         public virtual bool MoveToFirst() { throw null; }
MoveToFirstAttribute()3618         public abstract bool MoveToFirstAttribute();
MoveToFirstChild()3619         public abstract bool MoveToFirstChild();
MoveToFirstNamespace()3620         public bool MoveToFirstNamespace() { throw null; }
MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope)3621         public abstract bool MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope);
MoveToFollowing(string localName, string namespaceURI)3622         public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; }
MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathNavigator end)3623         public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathNavigator end) { throw null; }
MoveToFollowing(System.Xml.XPath.XPathNodeType type)3624         public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNavigator end)3625         public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNavigator end) { throw null; }
MoveToId(string id)3626         public abstract bool MoveToId(string id);
MoveToNamespace(string name)3627         public virtual bool MoveToNamespace(string name) { throw null; }
MoveToNext()3628         public abstract bool MoveToNext();
MoveToNext(string localName, string namespaceURI)3629         public virtual bool MoveToNext(string localName, string namespaceURI) { throw null; }
MoveToNext(System.Xml.XPath.XPathNodeType type)3630         public virtual bool MoveToNext(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToNextAttribute()3631         public abstract bool MoveToNextAttribute();
MoveToNextNamespace()3632         public bool MoveToNextNamespace() { throw null; }
MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope)3633         public abstract bool MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope);
MoveToParent()3634         public abstract bool MoveToParent();
MoveToPrevious()3635         public abstract bool MoveToPrevious();
MoveToRoot()3636         public virtual void MoveToRoot() { }
PrependChild()3637         public virtual System.Xml.XmlWriter PrependChild() { throw null; }
PrependChild(string newChild)3638         public virtual void PrependChild(string newChild) { }
PrependChild(System.Xml.XmlReader newChild)3639         public virtual void PrependChild(System.Xml.XmlReader newChild) { }
PrependChild(System.Xml.XPath.XPathNavigator newChild)3640         public virtual void PrependChild(System.Xml.XPath.XPathNavigator newChild) { }
PrependChildElement(string prefix, string localName, string namespaceURI, string value)3641         public virtual void PrependChildElement(string prefix, string localName, string namespaceURI, string value) { }
ReadSubtree()3642         public virtual System.Xml.XmlReader ReadSubtree() { throw null; }
ReplaceRange(System.Xml.XPath.XPathNavigator lastSiblingToReplace)3643         public virtual System.Xml.XmlWriter ReplaceRange(System.Xml.XPath.XPathNavigator lastSiblingToReplace) { throw null; }
ReplaceSelf(string newNode)3644         public virtual void ReplaceSelf(string newNode) { }
ReplaceSelf(System.Xml.XmlReader newNode)3645         public virtual void ReplaceSelf(System.Xml.XmlReader newNode) { }
ReplaceSelf(System.Xml.XPath.XPathNavigator newNode)3646         public virtual void ReplaceSelf(System.Xml.XPath.XPathNavigator newNode) { }
Select(string xpath)3647         public virtual System.Xml.XPath.XPathNodeIterator Select(string xpath) { throw null; }
Select(string xpath, System.Xml.IXmlNamespaceResolver resolver)3648         public virtual System.Xml.XPath.XPathNodeIterator Select(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
Select(System.Xml.XPath.XPathExpression expr)3649         public virtual System.Xml.XPath.XPathNodeIterator Select(System.Xml.XPath.XPathExpression expr) { throw null; }
SelectAncestors(string name, string namespaceURI, bool matchSelf)3650         public virtual System.Xml.XPath.XPathNodeIterator SelectAncestors(string name, string namespaceURI, bool matchSelf) { throw null; }
SelectAncestors(System.Xml.XPath.XPathNodeType type, bool matchSelf)3651         public virtual System.Xml.XPath.XPathNodeIterator SelectAncestors(System.Xml.XPath.XPathNodeType type, bool matchSelf) { throw null; }
SelectChildren(string name, string namespaceURI)3652         public virtual System.Xml.XPath.XPathNodeIterator SelectChildren(string name, string namespaceURI) { throw null; }
SelectChildren(System.Xml.XPath.XPathNodeType type)3653         public virtual System.Xml.XPath.XPathNodeIterator SelectChildren(System.Xml.XPath.XPathNodeType type) { throw null; }
SelectDescendants(string name, string namespaceURI, bool matchSelf)3654         public virtual System.Xml.XPath.XPathNodeIterator SelectDescendants(string name, string namespaceURI, bool matchSelf) { throw null; }
SelectDescendants(System.Xml.XPath.XPathNodeType type, bool matchSelf)3655         public virtual System.Xml.XPath.XPathNodeIterator SelectDescendants(System.Xml.XPath.XPathNodeType type, bool matchSelf) { throw null; }
SelectSingleNode(string xpath)3656         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(string xpath) { throw null; }
SelectSingleNode(string xpath, System.Xml.IXmlNamespaceResolver resolver)3657         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
SelectSingleNode(System.Xml.XPath.XPathExpression expression)3658         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(System.Xml.XPath.XPathExpression expression) { throw null; }
SetTypedValue(object typedValue)3659         public virtual void SetTypedValue(object typedValue) { }
SetValue(string value)3660         public virtual void SetValue(string value) { }
System.ICloneable.Clone()3661         object System.ICloneable.Clone() { throw null; }
ToString()3662         public override string ToString() { throw null; }
ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver)3663         public override object ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
WriteSubtree(System.Xml.XmlWriter writer)3664         public virtual void WriteSubtree(System.Xml.XmlWriter writer) { }
3665     }
3666     [System.Diagnostics.DebuggerDisplayAttribute("Position={CurrentPosition}, Current={debuggerDisplayProxy}")]
3667     public abstract partial class XPathNodeIterator : System.Collections.IEnumerable, System.ICloneable
3668     {
XPathNodeIterator()3669         protected XPathNodeIterator() { }
3670         public virtual int Count { get { throw null; } }
3671         public abstract System.Xml.XPath.XPathNavigator Current { get; }
3672         public abstract int CurrentPosition { get; }
Clone()3673         public abstract System.Xml.XPath.XPathNodeIterator Clone();
GetEnumerator()3674         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
MoveNext()3675         public abstract bool MoveNext();
System.ICloneable.Clone()3676         object System.ICloneable.Clone() { throw null; }
3677     }
3678     public enum XPathNodeType
3679     {
3680         All = 9,
3681         Attribute = 2,
3682         Comment = 8,
3683         Element = 1,
3684         Namespace = 3,
3685         ProcessingInstruction = 7,
3686         Root = 0,
3687         SignificantWhitespace = 5,
3688         Text = 4,
3689         Whitespace = 6,
3690     }
3691     public enum XPathResultType
3692     {
3693         Any = 5,
3694         Boolean = 2,
3695         Error = 6,
3696         Navigator = 1,
3697         NodeSet = 3,
3698         Number = 0,
3699         String = 1,
3700     }
3701 }
3702 namespace System.Xml.Xsl
3703 {
3704     public partial interface IXsltContextFunction
3705     {
3706         System.Xml.XPath.XPathResultType[] ArgTypes { get; }
3707         int Maxargs { get; }
3708         int Minargs { get; }
3709         System.Xml.XPath.XPathResultType ReturnType { get; }
Invoke(System.Xml.Xsl.XsltContext xsltContext, object[] args, System.Xml.XPath.XPathNavigator docContext)3710         object Invoke(System.Xml.Xsl.XsltContext xsltContext, object[] args, System.Xml.XPath.XPathNavigator docContext);
3711     }
3712     public partial interface IXsltContextVariable
3713     {
3714         bool IsLocal { get; }
3715         bool IsParam { get; }
3716         System.Xml.XPath.XPathResultType VariableType { get; }
Evaluate(System.Xml.Xsl.XsltContext xsltContext)3717         object Evaluate(System.Xml.Xsl.XsltContext xsltContext);
3718     }
3719     public sealed partial class XslCompiledTransform
3720     {
XslCompiledTransform()3721         public XslCompiledTransform() { }
XslCompiledTransform(bool enableDebug)3722         public XslCompiledTransform(bool enableDebug) { }
3723         public System.Xml.XmlWriterSettings OutputSettings { get { throw null; } }
3724         public System.CodeDom.Compiler.TempFileCollection TemporaryFiles { [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")]get { throw null; } }
CompileToType(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver, bool debug, System.Reflection.Emit.TypeBuilder typeBuilder, string scriptAssemblyPath)3725         public static System.CodeDom.Compiler.CompilerErrorCollection CompileToType(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver, bool debug, System.Reflection.Emit.TypeBuilder typeBuilder, string scriptAssemblyPath) { throw null; }
Load(System.Reflection.MethodInfo executeMethod, byte[] queryData, System.Type[] earlyBoundTypes)3726         public void Load(System.Reflection.MethodInfo executeMethod, byte[] queryData, System.Type[] earlyBoundTypes) { }
Load(string stylesheetUri)3727         public void Load(string stylesheetUri) { }
Load(string stylesheetUri, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)3728         public void Load(string stylesheetUri, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Load(System.Type compiledStylesheet)3729         public void Load(System.Type compiledStylesheet) { }
Load(System.Xml.XmlReader stylesheet)3730         public void Load(System.Xml.XmlReader stylesheet) { }
Load(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)3731         public void Load(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet)3732         public void Load(System.Xml.XPath.IXPathNavigable stylesheet) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)3733         public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Transform(string inputUri, string resultsFile)3734         public void Transform(string inputUri, string resultsFile) { }
Transform(string inputUri, System.Xml.XmlWriter results)3735         public void Transform(string inputUri, System.Xml.XmlWriter results) { }
Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results)3736         public void Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results) { }
Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results)3737         public void Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results) { }
Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results)3738         public void Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results) { }
Transform(System.Xml.XmlReader input, System.Xml.XmlWriter results)3739         public void Transform(System.Xml.XmlReader input, System.Xml.XmlWriter results) { }
Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results)3740         public void Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results) { }
Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results)3741         public void Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results) { }
Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results)3742         public void Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results) { }
Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver)3743         public void Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.XmlWriter results)3744         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.XmlWriter results) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results)3745         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results)3746         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.IO.TextWriter results) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results)3747         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver)3748         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver) { }
3749     }
3750     public partial class XsltArgumentList
3751     {
XsltArgumentList()3752         public XsltArgumentList() { }
3753         public event System.Xml.Xsl.XsltMessageEncounteredEventHandler XsltMessageEncountered { add { } remove { } }
AddExtensionObject(string namespaceUri, object extension)3754         public void AddExtensionObject(string namespaceUri, object extension) { }
AddParam(string name, string namespaceUri, object parameter)3755         public void AddParam(string name, string namespaceUri, object parameter) { }
Clear()3756         public void Clear() { }
GetExtensionObject(string namespaceUri)3757         public object GetExtensionObject(string namespaceUri) { throw null; }
GetParam(string name, string namespaceUri)3758         public object GetParam(string name, string namespaceUri) { throw null; }
RemoveExtensionObject(string namespaceUri)3759         public object RemoveExtensionObject(string namespaceUri) { throw null; }
RemoveParam(string name, string namespaceUri)3760         public object RemoveParam(string name, string namespaceUri) { throw null; }
3761     }
3762     [System.SerializableAttribute]
3763     public partial class XsltCompileException : System.Xml.Xsl.XsltException
3764     {
XsltCompileException()3765         public XsltCompileException() { }
XsltCompileException(System.Exception inner, string sourceUri, int lineNumber, int linePosition)3766         public XsltCompileException(System.Exception inner, string sourceUri, int lineNumber, int linePosition) { }
XsltCompileException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3767         protected XsltCompileException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XsltCompileException(string message)3768         public XsltCompileException(string message) { }
XsltCompileException(string message, System.Exception innerException)3769         public XsltCompileException(string message, System.Exception innerException) { }
3770         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3771         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3772     }
3773     public abstract partial class XsltContext : System.Xml.XmlNamespaceManager
3774     {
XsltContext()3775         protected XsltContext() : base (default(System.Xml.XmlNameTable)) { }
XsltContext(System.Xml.NameTable table)3776         protected XsltContext(System.Xml.NameTable table) : base (default(System.Xml.XmlNameTable)) { }
3777         public abstract bool Whitespace { get; }
CompareDocument(string baseUri, string nextbaseUri)3778         public abstract int CompareDocument(string baseUri, string nextbaseUri);
PreserveWhitespace(System.Xml.XPath.XPathNavigator node)3779         public abstract bool PreserveWhitespace(System.Xml.XPath.XPathNavigator node);
ResolveFunction(string prefix, string name, System.Xml.XPath.XPathResultType[] ArgTypes)3780         public abstract System.Xml.Xsl.IXsltContextFunction ResolveFunction(string prefix, string name, System.Xml.XPath.XPathResultType[] ArgTypes);
ResolveVariable(string prefix, string name)3781         public abstract System.Xml.Xsl.IXsltContextVariable ResolveVariable(string prefix, string name);
3782     }
3783     [System.SerializableAttribute]
3784     public partial class XsltException : System.SystemException
3785     {
XsltException()3786         public XsltException() { }
XsltException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3787         protected XsltException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XsltException(string message)3788         public XsltException(string message) { }
XsltException(string message, System.Exception innerException)3789         public XsltException(string message, System.Exception innerException) { }
3790         public virtual int LineNumber { get { throw null; } }
3791         public virtual int LinePosition { get { throw null; } }
3792         public override string Message { get { throw null; } }
3793         public virtual string SourceUri { get { throw null; } }
3794         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)3795         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
3796     }
3797     public abstract partial class XsltMessageEncounteredEventArgs : System.EventArgs
3798     {
XsltMessageEncounteredEventArgs()3799         protected XsltMessageEncounteredEventArgs() { }
3800         public abstract string Message { get; }
3801     }
XsltMessageEncounteredEventHandler(object sender, System.Xml.Xsl.XsltMessageEncounteredEventArgs e)3802     public delegate void XsltMessageEncounteredEventHandler(object sender, System.Xml.Xsl.XsltMessageEncounteredEventArgs e);
3803     [System.ObsoleteAttribute("This class has been deprecated. Please use System.Xml.Xsl.XslCompiledTransform instead. http://go.microsoft.com/fwlink/?linkid=14202")]
3804     public sealed partial class XslTransform
3805     {
XslTransform()3806         public XslTransform() { }
3807         public System.Xml.XmlResolver XmlResolver { set { } }
Load(string url)3808         public void Load(string url) { }
Load(string url, System.Xml.XmlResolver resolver)3809         public void Load(string url, System.Xml.XmlResolver resolver) { }
Load(System.Xml.XmlReader stylesheet)3810         public void Load(System.Xml.XmlReader stylesheet) { }
Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver)3811         public void Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver) { }
Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence)3812         public void Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet)3813         public void Load(System.Xml.XPath.IXPathNavigable stylesheet) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver)3814         public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence)3815         public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Load(System.Xml.XPath.XPathNavigator stylesheet)3816         public void Load(System.Xml.XPath.XPathNavigator stylesheet) { }
Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver)3817         public void Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver) { }
Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence)3818         public void Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Transform(string inputfile, string outputfile)3819         public void Transform(string inputfile, string outputfile) { }
Transform(string inputfile, string outputfile, System.Xml.XmlResolver resolver)3820         public void Transform(string inputfile, string outputfile, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args)3821         public System.Xml.XmlReader Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args) { throw null; }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output)3822         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output, System.Xml.XmlResolver resolver)3823         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output)3824         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output, System.Xml.XmlResolver resolver)3825         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlResolver resolver)3826         public System.Xml.XmlReader Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlResolver resolver) { throw null; }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output)3827         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output, System.Xml.XmlResolver resolver)3828         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args)3829         public System.Xml.XmlReader Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args) { throw null; }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output)3830         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output, System.Xml.XmlResolver resolver)3831         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.Stream output, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output)3832         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output, System.Xml.XmlResolver resolver)3833         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.IO.TextWriter output, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlResolver resolver)3834         public System.Xml.XmlReader Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlResolver resolver) { throw null; }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output)3835         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output) { }
Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output, System.Xml.XmlResolver resolver)3836         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output, System.Xml.XmlResolver resolver) { }
3837     }
3838     public sealed partial class XsltSettings
3839     {
XsltSettings()3840         public XsltSettings() { }
XsltSettings(bool enableDocumentFunction, bool enableScript)3841         public XsltSettings(bool enableDocumentFunction, bool enableScript) { }
3842         public static System.Xml.Xsl.XsltSettings Default { get { throw null; } }
3843         public bool EnableDocumentFunction { get { throw null; } set { } }
3844         public bool EnableScript { get { throw null; } set { } }
3845         public static System.Xml.Xsl.XsltSettings TrustedXslt { get { throw null; } }
3846     }
3847 }
3848 namespace System.Xml.Xsl.Runtime
3849 {
3850     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3851     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3852     public partial struct AncestorDocOrderIterator
3853     {
3854         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.AncestorDocOrderIterator3855         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
MoveNextSystem.Xml.Xsl.Runtime.AncestorDocOrderIterator3856         public bool MoveNext() { throw null; }
3857     }
3858     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3859     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3860     public partial struct AncestorIterator
3861     {
3862         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.AncestorIterator3863         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
MoveNextSystem.Xml.Xsl.Runtime.AncestorIterator3864         public bool MoveNext() { throw null; }
3865     }
3866     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3867     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3868     public partial struct AttributeContentIterator
3869     {
3870         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.AttributeContentIterator3871         public void Create(System.Xml.XPath.XPathNavigator context) { }
MoveNextSystem.Xml.Xsl.Runtime.AttributeContentIterator3872         public bool MoveNext() { throw null; }
3873     }
3874     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3875     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3876     public partial struct AttributeIterator
3877     {
3878         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.AttributeIterator3879         public void Create(System.Xml.XPath.XPathNavigator context) { }
MoveNextSystem.Xml.Xsl.Runtime.AttributeIterator3880         public bool MoveNext() { throw null; }
3881     }
3882     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3883     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3884     public partial struct ContentIterator
3885     {
3886         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.ContentIterator3887         public void Create(System.Xml.XPath.XPathNavigator context) { }
MoveNextSystem.Xml.Xsl.Runtime.ContentIterator3888         public bool MoveNext() { throw null; }
3889     }
3890     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3891     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3892     public partial struct ContentMergeIterator
3893     {
3894         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.ContentMergeIterator3895         public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.ContentMergeIterator3896         public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
3897     }
3898     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3899     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3900     public partial struct DecimalAggregator
3901     {
3902         public decimal AverageResult { get { throw null; } }
3903         public bool IsEmpty { get { throw null; } }
3904         public decimal MaximumResult { get { throw null; } }
3905         public decimal MinimumResult { get { throw null; } }
3906         public decimal SumResult { get { throw null; } }
AverageSystem.Xml.Xsl.Runtime.DecimalAggregator3907         public void Average(decimal value) { }
CreateSystem.Xml.Xsl.Runtime.DecimalAggregator3908         public void Create() { }
MaximumSystem.Xml.Xsl.Runtime.DecimalAggregator3909         public void Maximum(decimal value) { }
MinimumSystem.Xml.Xsl.Runtime.DecimalAggregator3910         public void Minimum(decimal value) { }
SumSystem.Xml.Xsl.Runtime.DecimalAggregator3911         public void Sum(decimal value) { }
3912     }
3913     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3914     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3915     public partial struct DescendantIterator
3916     {
3917         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.DescendantIterator3918         public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
MoveNextSystem.Xml.Xsl.Runtime.DescendantIterator3919         public bool MoveNext() { throw null; }
3920     }
3921     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3922     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3923     public partial struct DescendantMergeIterator
3924     {
3925         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.DescendantMergeIterator3926         public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, bool orSelf) { }
MoveNextSystem.Xml.Xsl.Runtime.DescendantMergeIterator3927         public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
3928     }
3929     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3930     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3931     public partial struct DifferenceIterator
3932     {
3933         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.DifferenceIterator3934         public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
MoveNextSystem.Xml.Xsl.Runtime.DifferenceIterator3935         public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
3936     }
3937     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3938     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3939     public partial struct DodSequenceMerge
3940     {
AddSequenceSystem.Xml.Xsl.Runtime.DodSequenceMerge3941         public void AddSequence(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> sequence) { }
CreateSystem.Xml.Xsl.Runtime.DodSequenceMerge3942         public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
MergeSequencesSystem.Xml.Xsl.Runtime.DodSequenceMerge3943         public System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> MergeSequences() { throw null; }
3944     }
3945     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3946     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3947     public partial struct DoubleAggregator
3948     {
3949         public double AverageResult { get { throw null; } }
3950         public bool IsEmpty { get { throw null; } }
3951         public double MaximumResult { get { throw null; } }
3952         public double MinimumResult { get { throw null; } }
3953         public double SumResult { get { throw null; } }
AverageSystem.Xml.Xsl.Runtime.DoubleAggregator3954         public void Average(double value) { }
CreateSystem.Xml.Xsl.Runtime.DoubleAggregator3955         public void Create() { }
MaximumSystem.Xml.Xsl.Runtime.DoubleAggregator3956         public void Maximum(double value) { }
MinimumSystem.Xml.Xsl.Runtime.DoubleAggregator3957         public void Minimum(double value) { }
SumSystem.Xml.Xsl.Runtime.DoubleAggregator3958         public void Sum(double value) { }
3959     }
3960     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3961     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3962     public partial struct ElementContentIterator
3963     {
3964         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.ElementContentIterator3965         public void Create(System.Xml.XPath.XPathNavigator context, string localName, string ns) { }
MoveNextSystem.Xml.Xsl.Runtime.ElementContentIterator3966         public bool MoveNext() { throw null; }
3967     }
3968     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3969     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3970     public partial struct FollowingSiblingIterator
3971     {
3972         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.FollowingSiblingIterator3973         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.FollowingSiblingIterator3974         public bool MoveNext() { throw null; }
3975     }
3976     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3977     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3978     public partial struct FollowingSiblingMergeIterator
3979     {
3980         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.FollowingSiblingMergeIterator3981         public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.FollowingSiblingMergeIterator3982         public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator navigator) { throw null; }
3983     }
3984     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3985     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3986     public partial struct IdIterator
3987     {
3988         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.IdIterator3989         public void Create(System.Xml.XPath.XPathNavigator context, string value) { }
MoveNextSystem.Xml.Xsl.Runtime.IdIterator3990         public bool MoveNext() { throw null; }
3991     }
3992     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
3993     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
3994     public partial struct Int32Aggregator
3995     {
3996         public int AverageResult { get { throw null; } }
3997         public bool IsEmpty { get { throw null; } }
3998         public int MaximumResult { get { throw null; } }
3999         public int MinimumResult { get { throw null; } }
4000         public int SumResult { get { throw null; } }
AverageSystem.Xml.Xsl.Runtime.Int32Aggregator4001         public void Average(int value) { }
CreateSystem.Xml.Xsl.Runtime.Int32Aggregator4002         public void Create() { }
MaximumSystem.Xml.Xsl.Runtime.Int32Aggregator4003         public void Maximum(int value) { }
MinimumSystem.Xml.Xsl.Runtime.Int32Aggregator4004         public void Minimum(int value) { }
SumSystem.Xml.Xsl.Runtime.Int32Aggregator4005         public void Sum(int value) { }
4006     }
4007     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4008     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4009     public partial struct Int64Aggregator
4010     {
4011         public long AverageResult { get { throw null; } }
4012         public bool IsEmpty { get { throw null; } }
4013         public long MaximumResult { get { throw null; } }
4014         public long MinimumResult { get { throw null; } }
4015         public long SumResult { get { throw null; } }
AverageSystem.Xml.Xsl.Runtime.Int64Aggregator4016         public void Average(long value) { }
CreateSystem.Xml.Xsl.Runtime.Int64Aggregator4017         public void Create() { }
MaximumSystem.Xml.Xsl.Runtime.Int64Aggregator4018         public void Maximum(long value) { }
MinimumSystem.Xml.Xsl.Runtime.Int64Aggregator4019         public void Minimum(long value) { }
SumSystem.Xml.Xsl.Runtime.Int64Aggregator4020         public void Sum(long value) { }
4021     }
4022     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4023     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4024     public partial struct IntersectIterator
4025     {
4026         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.IntersectIterator4027         public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
MoveNextSystem.Xml.Xsl.Runtime.IntersectIterator4028         public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
4029     }
4030     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4031     public enum IteratorResult
4032     {
4033         HaveCurrentNode = 2,
4034         NeedInputNode = 1,
4035         NoMoreNodes = 0,
4036     }
4037     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4038     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4039     public partial struct NamespaceIterator
4040     {
4041         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.NamespaceIterator4042         public void Create(System.Xml.XPath.XPathNavigator context) { }
MoveNextSystem.Xml.Xsl.Runtime.NamespaceIterator4043         public bool MoveNext() { throw null; }
4044     }
4045     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4046     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4047     public partial struct NodeKindContentIterator
4048     {
4049         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.NodeKindContentIterator4050         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.XPath.XPathNodeType nodeType) { }
MoveNextSystem.Xml.Xsl.Runtime.NodeKindContentIterator4051         public bool MoveNext() { throw null; }
4052     }
4053     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4054     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4055     public partial struct NodeRangeIterator
4056     {
4057         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.NodeRangeIterator4058         public void Create(System.Xml.XPath.XPathNavigator start, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter, System.Xml.XPath.XPathNavigator end) { }
MoveNextSystem.Xml.Xsl.Runtime.NodeRangeIterator4059         public bool MoveNext() { throw null; }
4060     }
4061     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4062     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4063     public partial struct ParentIterator
4064     {
4065         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.ParentIterator4066         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.ParentIterator4067         public bool MoveNext() { throw null; }
4068     }
4069     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4070     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4071     public partial struct PrecedingIterator
4072     {
4073         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.PrecedingIterator4074         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.PrecedingIterator4075         public bool MoveNext() { throw null; }
4076     }
4077     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4078     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4079     public partial struct PrecedingSiblingDocOrderIterator
4080     {
4081         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator4082         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.PrecedingSiblingDocOrderIterator4083         public bool MoveNext() { throw null; }
4084     }
4085     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4086     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4087     public partial struct PrecedingSiblingIterator
4088     {
4089         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.PrecedingSiblingIterator4090         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.PrecedingSiblingIterator4091         public bool MoveNext() { throw null; }
4092     }
4093     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4094     public enum SetIteratorResult
4095     {
4096         HaveCurrentNode = 4,
4097         InitRightIterator = 1,
4098         NeedLeftNode = 2,
4099         NeedRightNode = 3,
4100         NoMoreNodes = 0,
4101     }
4102     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4103     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4104     public partial struct StringConcat
4105     {
4106         public string Delimiter { get { throw null; } set { } }
ClearSystem.Xml.Xsl.Runtime.StringConcat4107         public void Clear() { }
ConcatSystem.Xml.Xsl.Runtime.StringConcat4108         public void Concat(string value) { }
GetResultSystem.Xml.Xsl.Runtime.StringConcat4109         public string GetResult() { throw null; }
4110     }
4111     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4112     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4113     public partial struct UnionIterator
4114     {
4115         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.UnionIterator4116         public void Create(System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { }
MoveNextSystem.Xml.Xsl.Runtime.UnionIterator4117         public System.Xml.Xsl.Runtime.SetIteratorResult MoveNext(System.Xml.XPath.XPathNavigator nestedNavigator) { throw null; }
4118     }
4119     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4120     public sealed partial class XmlCollation
4121     {
XmlCollation()4122         internal XmlCollation() { }
Equals(object obj)4123         public override bool Equals(object obj) { throw null; }
GetHashCode()4124         public override int GetHashCode() { throw null; }
4125     }
4126     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4127     public sealed partial class XmlILIndex
4128     {
XmlILIndex()4129         internal XmlILIndex() { }
Add(string key, System.Xml.XPath.XPathNavigator navigator)4130         public void Add(string key, System.Xml.XPath.XPathNavigator navigator) { }
Lookup(string key)4131         public System.Xml.Xsl.Runtime.XmlQueryNodeSequence Lookup(string key) { throw null; }
4132     }
4133     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4134     public static partial class XmlILStorageConverter
4135     {
BooleanToAtomicValue(bool value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4136         public static System.Xml.Schema.XmlAtomicValue BooleanToAtomicValue(bool value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
BytesToAtomicValue(byte[] value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4137         public static System.Xml.Schema.XmlAtomicValue BytesToAtomicValue(byte[] value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
DateTimeToAtomicValue(System.DateTime value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4138         public static System.Xml.Schema.XmlAtomicValue DateTimeToAtomicValue(System.DateTime value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
DecimalToAtomicValue(decimal value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4139         public static System.Xml.Schema.XmlAtomicValue DecimalToAtomicValue(decimal value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
DoubleToAtomicValue(double value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4140         public static System.Xml.Schema.XmlAtomicValue DoubleToAtomicValue(double value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
Int32ToAtomicValue(int value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4141         public static System.Xml.Schema.XmlAtomicValue Int32ToAtomicValue(int value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
Int64ToAtomicValue(long value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4142         public static System.Xml.Schema.XmlAtomicValue Int64ToAtomicValue(long value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
ItemsToNavigators(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4143         public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ItemsToNavigators(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
NavigatorsToItems(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> listNavigators)4144         public static System.Collections.Generic.IList<System.Xml.XPath.XPathItem> NavigatorsToItems(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> listNavigators) { throw null; }
SingleToAtomicValue(float value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4145         public static System.Xml.Schema.XmlAtomicValue SingleToAtomicValue(float value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
StringToAtomicValue(string value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4146         public static System.Xml.Schema.XmlAtomicValue StringToAtomicValue(string value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
TimeSpanToAtomicValue(System.TimeSpan value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4147         public static System.Xml.Schema.XmlAtomicValue TimeSpanToAtomicValue(System.TimeSpan value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
XmlQualifiedNameToAtomicValue(System.Xml.XmlQualifiedName value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime)4148         public static System.Xml.Schema.XmlAtomicValue XmlQualifiedNameToAtomicValue(System.Xml.XmlQualifiedName value, int index, System.Xml.Xsl.Runtime.XmlQueryRuntime runtime) { throw null; }
4149     }
4150     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4151     public abstract partial class XmlNavigatorFilter
4152     {
XmlNavigatorFilter()4153         protected XmlNavigatorFilter() { }
IsFiltered(System.Xml.XPath.XPathNavigator navigator)4154         public abstract bool IsFiltered(System.Xml.XPath.XPathNavigator navigator);
MoveToContent(System.Xml.XPath.XPathNavigator navigator)4155         public abstract bool MoveToContent(System.Xml.XPath.XPathNavigator navigator);
MoveToFollowing(System.Xml.XPath.XPathNavigator navigator, System.Xml.XPath.XPathNavigator navigatorEnd)4156         public abstract bool MoveToFollowing(System.Xml.XPath.XPathNavigator navigator, System.Xml.XPath.XPathNavigator navigatorEnd);
MoveToFollowingSibling(System.Xml.XPath.XPathNavigator navigator)4157         public abstract bool MoveToFollowingSibling(System.Xml.XPath.XPathNavigator navigator);
MoveToNextContent(System.Xml.XPath.XPathNavigator navigator)4158         public abstract bool MoveToNextContent(System.Xml.XPath.XPathNavigator navigator);
MoveToPreviousSibling(System.Xml.XPath.XPathNavigator navigator)4159         public abstract bool MoveToPreviousSibling(System.Xml.XPath.XPathNavigator navigator);
4160     }
4161     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4162     public sealed partial class XmlQueryContext
4163     {
XmlQueryContext()4164         internal XmlQueryContext() { }
4165         public System.Xml.XPath.XPathNavigator DefaultDataSource { get { throw null; } }
4166         public System.Xml.XmlNameTable DefaultNameTable { get { throw null; } }
4167         public System.Xml.XmlNameTable QueryNameTable { get { throw null; } }
GetDataSource(string uriRelative, string uriBase)4168         public System.Xml.XPath.XPathNavigator GetDataSource(string uriRelative, string uriBase) { throw null; }
GetLateBoundObject(string namespaceUri)4169         public object GetLateBoundObject(string namespaceUri) { throw null; }
GetParameter(string localName, string namespaceUri)4170         public object GetParameter(string localName, string namespaceUri) { throw null; }
InvokeXsltLateBoundFunction(string name, string namespaceUri, System.Collections.Generic.IList<System.Xml.XPath.XPathItem>[] args)4171         public System.Collections.Generic.IList<System.Xml.XPath.XPathItem> InvokeXsltLateBoundFunction(string name, string namespaceUri, System.Collections.Generic.IList<System.Xml.XPath.XPathItem>[] args) { throw null; }
LateBoundFunctionExists(string name, string namespaceUri)4172         public bool LateBoundFunctionExists(string name, string namespaceUri) { throw null; }
OnXsltMessageEncountered(string message)4173         public void OnXsltMessageEncountered(string message) { }
4174     }
4175     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4176     public sealed partial class XmlQueryItemSequence : System.Xml.Xsl.Runtime.XmlQuerySequence<System.Xml.XPath.XPathItem>
4177     {
4178         public static readonly new System.Xml.Xsl.Runtime.XmlQueryItemSequence Empty;
XmlQueryItemSequence()4179         public XmlQueryItemSequence() { }
XmlQueryItemSequence(int capacity)4180         public XmlQueryItemSequence(int capacity) { }
XmlQueryItemSequence(System.Xml.XPath.XPathItem item)4181         public XmlQueryItemSequence(System.Xml.XPath.XPathItem item) { }
AddClone(System.Xml.XPath.XPathItem item)4182         public void AddClone(System.Xml.XPath.XPathItem item) { }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq)4183         public static System.Xml.Xsl.Runtime.XmlQueryItemSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq) { throw null; }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq, System.Xml.XPath.XPathItem item)4184         public static System.Xml.Xsl.Runtime.XmlQueryItemSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryItemSequence seq, System.Xml.XPath.XPathItem item) { throw null; }
4185     }
4186     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4187     public sealed partial class XmlQueryNodeSequence : System.Xml.Xsl.Runtime.XmlQuerySequence<System.Xml.XPath.XPathNavigator>, System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>, System.Collections.Generic.IEnumerable<System.Xml.XPath.XPathItem>, System.Collections.Generic.IList<System.Xml.XPath.XPathItem>, System.Collections.IEnumerable
4188     {
4189         public static readonly new System.Xml.Xsl.Runtime.XmlQueryNodeSequence Empty;
XmlQueryNodeSequence()4190         public XmlQueryNodeSequence() { }
XmlQueryNodeSequence(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> list)4191         public XmlQueryNodeSequence(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> list) { }
XmlQueryNodeSequence(int capacity)4192         public XmlQueryNodeSequence(int capacity) { }
XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator navigator)4193         public XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator navigator) { }
XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator[] array, int size)4194         public XmlQueryNodeSequence(System.Xml.XPath.XPathNavigator[] array, int size) { }
4195         public bool IsDocOrderDistinct { get { throw null; } set { } }
4196         bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.IsReadOnly { get { throw null; } }
4197         System.Xml.XPath.XPathItem System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.this[int index] { get { throw null; } set { } }
AddClone(System.Xml.XPath.XPathNavigator navigator)4198         public void AddClone(System.Xml.XPath.XPathNavigator navigator) { }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq)4199         public static System.Xml.Xsl.Runtime.XmlQueryNodeSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq) { throw null; }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq, System.Xml.XPath.XPathNavigator navigator)4200         public static System.Xml.Xsl.Runtime.XmlQueryNodeSequence CreateOrReuse(System.Xml.Xsl.Runtime.XmlQueryNodeSequence seq, System.Xml.XPath.XPathNavigator navigator) { throw null; }
DocOrderDistinct(System.Collections.Generic.IComparer<System.Xml.XPath.XPathNavigator> comparer)4201         public System.Xml.Xsl.Runtime.XmlQueryNodeSequence DocOrderDistinct(System.Collections.Generic.IComparer<System.Xml.XPath.XPathNavigator> comparer) { throw null; }
OnItemsChanged()4202         protected override void OnItemsChanged() { }
Add(System.Xml.XPath.XPathItem value)4203         void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Add(System.Xml.XPath.XPathItem value) { }
Clear()4204         void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Clear() { }
Contains(System.Xml.XPath.XPathItem value)4205         bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Contains(System.Xml.XPath.XPathItem value) { throw null; }
CopyTo(System.Xml.XPath.XPathItem[] array, int index)4206         void System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.CopyTo(System.Xml.XPath.XPathItem[] array, int index) { }
Remove(System.Xml.XPath.XPathItem value)4207         bool System.Collections.Generic.ICollection<System.Xml.XPath.XPathItem>.Remove(System.Xml.XPath.XPathItem value) { throw null; }
GetEnumerator()4208         System.Collections.Generic.IEnumerator<System.Xml.XPath.XPathItem> System.Collections.Generic.IEnumerable<System.Xml.XPath.XPathItem>.GetEnumerator() { throw null; }
IndexOf(System.Xml.XPath.XPathItem value)4209         int System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.IndexOf(System.Xml.XPath.XPathItem value) { throw null; }
Insert(int index, System.Xml.XPath.XPathItem value)4210         void System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.Insert(int index, System.Xml.XPath.XPathItem value) { }
RemoveAt(int index)4211         void System.Collections.Generic.IList<System.Xml.XPath.XPathItem>.RemoveAt(int index) { }
4212     }
4213     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4214     public sealed partial class XmlQueryOutput : System.Xml.XmlWriter
4215     {
XmlQueryOutput()4216         internal XmlQueryOutput() { }
4217         public override System.Xml.WriteState WriteState { get { throw null; } }
4218         public override string XmlLang { get { throw null; } }
4219         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()4220         public override void Close() { }
EndCopy(System.Xml.XPath.XPathNavigator navigator)4221         public void EndCopy(System.Xml.XPath.XPathNavigator navigator) { }
EndTree()4222         public void EndTree() { }
Flush()4223         public override void Flush() { }
LookupPrefix(string ns)4224         public override string LookupPrefix(string ns) { throw null; }
StartCopy(System.Xml.XPath.XPathNavigator navigator)4225         public bool StartCopy(System.Xml.XPath.XPathNavigator navigator) { throw null; }
StartElementContentUnchecked()4226         public void StartElementContentUnchecked() { }
StartTree(System.Xml.XPath.XPathNodeType rootType)4227         public void StartTree(System.Xml.XPath.XPathNodeType rootType) { }
WriteBase64(byte[] buffer, int index, int count)4228         public override void WriteBase64(byte[] buffer, int index, int count) { }
WriteCData(string text)4229         public override void WriteCData(string text) { }
WriteCharEntity(char ch)4230         public override void WriteCharEntity(char ch) { }
WriteChars(char[] buffer, int index, int count)4231         public override void WriteChars(char[] buffer, int index, int count) { }
WriteComment(string text)4232         public override void WriteComment(string text) { }
WriteCommentString(string text)4233         public void WriteCommentString(string text) { }
WriteDocType(string name, string pubid, string sysid, string subset)4234         public override void WriteDocType(string name, string pubid, string sysid, string subset) { }
WriteEndAttribute()4235         public override void WriteEndAttribute() { }
WriteEndAttributeUnchecked()4236         public void WriteEndAttributeUnchecked() { }
WriteEndComment()4237         public void WriteEndComment() { }
WriteEndDocument()4238         public override void WriteEndDocument() { }
WriteEndElement()4239         public override void WriteEndElement() { }
WriteEndElementUnchecked(string localName)4240         public void WriteEndElementUnchecked(string localName) { }
WriteEndElementUnchecked(string prefix, string localName, string ns)4241         public void WriteEndElementUnchecked(string prefix, string localName, string ns) { }
WriteEndNamespace()4242         public void WriteEndNamespace() { }
WriteEndProcessingInstruction()4243         public void WriteEndProcessingInstruction() { }
WriteEndRoot()4244         public void WriteEndRoot() { }
WriteEntityRef(string name)4245         public override void WriteEntityRef(string name) { }
WriteFullEndElement()4246         public override void WriteFullEndElement() { }
WriteItem(System.Xml.XPath.XPathItem item)4247         public void WriteItem(System.Xml.XPath.XPathItem item) { }
WriteNamespaceDeclaration(string prefix, string ns)4248         public void WriteNamespaceDeclaration(string prefix, string ns) { }
WriteNamespaceDeclarationUnchecked(string prefix, string ns)4249         public void WriteNamespaceDeclarationUnchecked(string prefix, string ns) { }
WriteNamespaceString(string text)4250         public void WriteNamespaceString(string text) { }
WriteProcessingInstruction(string target, string text)4251         public override void WriteProcessingInstruction(string target, string text) { }
WriteProcessingInstructionString(string text)4252         public void WriteProcessingInstructionString(string text) { }
WriteRaw(char[] buffer, int index, int count)4253         public override void WriteRaw(char[] buffer, int index, int count) { }
WriteRaw(string data)4254         public override void WriteRaw(string data) { }
WriteRawUnchecked(string text)4255         public void WriteRawUnchecked(string text) { }
WriteStartAttribute(string prefix, string localName, string ns)4256         public override void WriteStartAttribute(string prefix, string localName, string ns) { }
WriteStartAttributeComputed(string tagName, int prefixMappingsIndex)4257         public void WriteStartAttributeComputed(string tagName, int prefixMappingsIndex) { }
WriteStartAttributeComputed(string tagName, string ns)4258         public void WriteStartAttributeComputed(string tagName, string ns) { }
WriteStartAttributeComputed(System.Xml.XmlQualifiedName name)4259         public void WriteStartAttributeComputed(System.Xml.XmlQualifiedName name) { }
WriteStartAttributeComputed(System.Xml.XPath.XPathNavigator navigator)4260         public void WriteStartAttributeComputed(System.Xml.XPath.XPathNavigator navigator) { }
WriteStartAttributeLocalName(string localName)4261         public void WriteStartAttributeLocalName(string localName) { }
WriteStartAttributeUnchecked(string localName)4262         public void WriteStartAttributeUnchecked(string localName) { }
WriteStartAttributeUnchecked(string prefix, string localName, string ns)4263         public void WriteStartAttributeUnchecked(string prefix, string localName, string ns) { }
WriteStartComment()4264         public void WriteStartComment() { }
WriteStartDocument()4265         public override void WriteStartDocument() { }
WriteStartDocument(bool standalone)4266         public override void WriteStartDocument(bool standalone) { }
WriteStartElement(string prefix, string localName, string ns)4267         public override void WriteStartElement(string prefix, string localName, string ns) { }
WriteStartElementComputed(string tagName, int prefixMappingsIndex)4268         public void WriteStartElementComputed(string tagName, int prefixMappingsIndex) { }
WriteStartElementComputed(string tagName, string ns)4269         public void WriteStartElementComputed(string tagName, string ns) { }
WriteStartElementComputed(System.Xml.XmlQualifiedName name)4270         public void WriteStartElementComputed(System.Xml.XmlQualifiedName name) { }
WriteStartElementComputed(System.Xml.XPath.XPathNavigator navigator)4271         public void WriteStartElementComputed(System.Xml.XPath.XPathNavigator navigator) { }
WriteStartElementLocalName(string localName)4272         public void WriteStartElementLocalName(string localName) { }
WriteStartElementUnchecked(string localName)4273         public void WriteStartElementUnchecked(string localName) { }
WriteStartElementUnchecked(string prefix, string localName, string ns)4274         public void WriteStartElementUnchecked(string prefix, string localName, string ns) { }
WriteStartNamespace(string prefix)4275         public void WriteStartNamespace(string prefix) { }
WriteStartProcessingInstruction(string target)4276         public void WriteStartProcessingInstruction(string target) { }
WriteStartRoot()4277         public void WriteStartRoot() { }
WriteString(string text)4278         public override void WriteString(string text) { }
WriteStringUnchecked(string text)4279         public void WriteStringUnchecked(string text) { }
WriteSurrogateCharEntity(char lowChar, char highChar)4280         public override void WriteSurrogateCharEntity(char lowChar, char highChar) { }
WriteWhitespace(string ws)4281         public override void WriteWhitespace(string ws) { }
XsltCopyOf(System.Xml.XPath.XPathNavigator navigator)4282         public void XsltCopyOf(System.Xml.XPath.XPathNavigator navigator) { }
4283     }
4284     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4285     public sealed partial class XmlQueryRuntime
4286     {
XmlQueryRuntime()4287         internal XmlQueryRuntime() { }
4288         public System.Xml.Xsl.Runtime.XmlQueryContext ExternalContext { get { throw null; } }
4289         public System.Xml.XmlNameTable NameTable { get { throw null; } }
4290         public System.Xml.Xsl.Runtime.XmlQueryOutput Output { get { throw null; } }
4291         public System.Xml.Xsl.Runtime.XsltLibrary XsltFunctions { get { throw null; } }
AddNewIndex(System.Xml.XPath.XPathNavigator context, int indexId, System.Xml.Xsl.Runtime.XmlILIndex index)4292         public void AddNewIndex(System.Xml.XPath.XPathNavigator context, int indexId, System.Xml.Xsl.Runtime.XmlILIndex index) { }
ChangeTypeXsltArgument(int indexType, object value, System.Type destinationType)4293         public object ChangeTypeXsltArgument(int indexType, object value, System.Type destinationType) { throw null; }
ChangeTypeXsltResult(int indexType, object value)4294         public object ChangeTypeXsltResult(int indexType, object value) { throw null; }
ComparePosition(System.Xml.XPath.XPathNavigator navigatorThis, System.Xml.XPath.XPathNavigator navigatorThat)4295         public int ComparePosition(System.Xml.XPath.XPathNavigator navigatorThis, System.Xml.XPath.XPathNavigator navigatorThat) { throw null; }
CreateCollation(string collation)4296         public System.Xml.Xsl.Runtime.XmlCollation CreateCollation(string collation) { throw null; }
DebugGetGlobalNames()4297         public string[] DebugGetGlobalNames() { throw null; }
DebugGetGlobalValue(string name)4298         public System.Collections.IList DebugGetGlobalValue(string name) { throw null; }
DebugGetXsltValue(System.Collections.IList seq)4299         public object DebugGetXsltValue(System.Collections.IList seq) { throw null; }
DebugSetGlobalValue(string name, object value)4300         public void DebugSetGlobalValue(string name, object value) { }
DocOrderDistinct(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> seq)4301         public System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> DocOrderDistinct(System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> seq) { throw null; }
EarlyBoundFunctionExists(string name, string namespaceUri)4302         public bool EarlyBoundFunctionExists(string name, string namespaceUri) { throw null; }
EndRtfConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output)4303         public System.Xml.XPath.XPathNavigator EndRtfConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); throw null; }
EndSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output)4304         public System.Collections.Generic.IList<System.Xml.XPath.XPathItem> EndSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); throw null; }
FindIndex(System.Xml.XPath.XPathNavigator context, int indexId, out System.Xml.Xsl.Runtime.XmlILIndex index)4305         public bool FindIndex(System.Xml.XPath.XPathNavigator context, int indexId, out System.Xml.Xsl.Runtime.XmlILIndex index) { index = default(System.Xml.Xsl.Runtime.XmlILIndex); throw null; }
GenerateId(System.Xml.XPath.XPathNavigator navigator)4306         public string GenerateId(System.Xml.XPath.XPathNavigator navigator) { throw null; }
GetAtomizedName(int index)4307         public string GetAtomizedName(int index) { throw null; }
GetCollation(int index)4308         public System.Xml.Xsl.Runtime.XmlCollation GetCollation(int index) { throw null; }
GetEarlyBoundObject(int index)4309         public object GetEarlyBoundObject(int index) { throw null; }
GetGlobalValue(int index)4310         public object GetGlobalValue(int index) { throw null; }
GetNameFilter(int index)4311         public System.Xml.Xsl.Runtime.XmlNavigatorFilter GetNameFilter(int index) { throw null; }
GetTypeFilter(System.Xml.XPath.XPathNodeType nodeType)4312         public System.Xml.Xsl.Runtime.XmlNavigatorFilter GetTypeFilter(System.Xml.XPath.XPathNodeType nodeType) { throw null; }
IsGlobalComputed(int index)4313         public bool IsGlobalComputed(int index) { throw null; }
IsQNameEqual(System.Xml.XPath.XPathNavigator navigator, int indexLocalName, int indexNamespaceUri)4314         public bool IsQNameEqual(System.Xml.XPath.XPathNavigator navigator, int indexLocalName, int indexNamespaceUri) { throw null; }
IsQNameEqual(System.Xml.XPath.XPathNavigator n1, System.Xml.XPath.XPathNavigator n2)4315         public bool IsQNameEqual(System.Xml.XPath.XPathNavigator n1, System.Xml.XPath.XPathNavigator n2) { throw null; }
MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, int indexType)4316         public bool MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, int indexType) { throw null; }
MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, System.Xml.Schema.XmlTypeCode code)4317         public bool MatchesXmlType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> seq, System.Xml.Schema.XmlTypeCode code) { throw null; }
MatchesXmlType(System.Xml.XPath.XPathItem item, int indexType)4318         public bool MatchesXmlType(System.Xml.XPath.XPathItem item, int indexType) { throw null; }
MatchesXmlType(System.Xml.XPath.XPathItem item, System.Xml.Schema.XmlTypeCode code)4319         public bool MatchesXmlType(System.Xml.XPath.XPathItem item, System.Xml.Schema.XmlTypeCode code) { throw null; }
OnCurrentNodeChanged(System.Xml.XPath.XPathNavigator currentNode)4320         public static int OnCurrentNodeChanged(System.Xml.XPath.XPathNavigator currentNode) { throw null; }
ParseTagName(string tagName, int indexPrefixMappings)4321         public System.Xml.XmlQualifiedName ParseTagName(string tagName, int indexPrefixMappings) { throw null; }
ParseTagName(string tagName, string ns)4322         public System.Xml.XmlQualifiedName ParseTagName(string tagName, string ns) { throw null; }
SendMessage(string message)4323         public void SendMessage(string message) { }
SetGlobalValue(int index, object value)4324         public void SetGlobalValue(int index, object value) { }
StartRtfConstruction(string baseUri, out System.Xml.Xsl.Runtime.XmlQueryOutput output)4325         public void StartRtfConstruction(string baseUri, out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); }
StartSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output)4326         public void StartSequenceConstruction(out System.Xml.Xsl.Runtime.XmlQueryOutput output) { output = default(System.Xml.Xsl.Runtime.XmlQueryOutput); }
TextRtfConstruction(string text, string baseUri)4327         public System.Xml.XPath.XPathNavigator TextRtfConstruction(string text, string baseUri) { throw null; }
ThrowException(string text)4328         public void ThrowException(string text) { }
4329     }
4330     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4331     public partial class XmlQuerySequence<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
4332     {
4333         public static readonly System.Xml.Xsl.Runtime.XmlQuerySequence<T> Empty;
XmlQuerySequence()4334         public XmlQuerySequence() { }
XmlQuerySequence(int capacity)4335         public XmlQuerySequence(int capacity) { }
XmlQuerySequence(T value)4336         public XmlQuerySequence(T value) { }
XmlQuerySequence(T[] array, int size)4337         public XmlQuerySequence(T[] array, int size) { }
4338         public int Count { get { throw null; } }
4339         public T this[int index] { get { throw null; } set { } }
4340         bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
4341         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
4342         object System.Collections.ICollection.SyncRoot { get { throw null; } }
4343         bool System.Collections.IList.IsFixedSize { get { throw null; } }
4344         bool System.Collections.IList.IsReadOnly { get { throw null; } }
4345         object System.Collections.IList.this[int index] { get { throw null; } set { } }
Add(T value)4346         public void Add(T value) { }
Clear()4347         public void Clear() { }
Contains(T value)4348         public bool Contains(T value) { throw null; }
CopyTo(T[] array, int index)4349         public void CopyTo(T[] array, int index) { }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq)4350         public static System.Xml.Xsl.Runtime.XmlQuerySequence<T> CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq) { throw null; }
CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq, T item)4351         public static System.Xml.Xsl.Runtime.XmlQuerySequence<T> CreateOrReuse(System.Xml.Xsl.Runtime.XmlQuerySequence<T> seq, T item) { throw null; }
GetEnumerator()4352         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
IndexOf(T value)4353         public int IndexOf(T value) { throw null; }
OnItemsChanged()4354         protected virtual void OnItemsChanged() { }
SortByKeys(System.Array keys)4355         public void SortByKeys(System.Array keys) { }
Add(T value)4356         void System.Collections.Generic.ICollection<T>.Add(T value) { }
Clear()4357         void System.Collections.Generic.ICollection<T>.Clear() { }
Remove(T value)4358         bool System.Collections.Generic.ICollection<T>.Remove(T value) { throw null; }
Insert(int index, T value)4359         void System.Collections.Generic.IList<T>.Insert(int index, T value) { }
RemoveAt(int index)4360         void System.Collections.Generic.IList<T>.RemoveAt(int index) { }
System.Collections.ICollection.CopyTo(System.Array array, int index)4361         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()4362         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.Collections.IList.Add(object value)4363         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()4364         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)4365         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)4366         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)4367         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)4368         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)4369         void System.Collections.IList.RemoveAt(int index) { }
4370     }
4371     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4372     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4373     public partial struct XmlSortKeyAccumulator
4374     {
4375         public System.Array Keys { get { throw null; } }
AddDateTimeSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4376         public void AddDateTimeSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, System.DateTime value) { }
AddDecimalSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4377         public void AddDecimalSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, decimal value) { }
AddDoubleSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4378         public void AddDoubleSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, double value) { }
AddEmptySortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4379         public void AddEmptySortKey(System.Xml.Xsl.Runtime.XmlCollation collation) { }
AddIntegerSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4380         public void AddIntegerSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, long value) { }
AddIntSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4381         public void AddIntSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, int value) { }
AddStringSortKeySystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4382         public void AddStringSortKey(System.Xml.Xsl.Runtime.XmlCollation collation, string value) { }
CreateSystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4383         public void Create() { }
FinishSortKeysSystem.Xml.Xsl.Runtime.XmlSortKeyAccumulator4384         public void FinishSortKeys() { }
4385     }
4386     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4387     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4388     public partial struct XPathFollowingIterator
4389     {
4390         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.XPathFollowingIterator4391         public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.XPathFollowingIterator4392         public bool MoveNext() { throw null; }
4393     }
4394     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4395     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4396     public partial struct XPathFollowingMergeIterator
4397     {
4398         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.XPathFollowingMergeIterator4399         public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.XPathFollowingMergeIterator4400         public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
4401     }
4402     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4403     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4404     public partial struct XPathPrecedingDocOrderIterator
4405     {
4406         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator4407         public void Create(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.XPathPrecedingDocOrderIterator4408         public bool MoveNext() { throw null; }
4409     }
4410     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4411     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4412     public partial struct XPathPrecedingIterator
4413     {
4414         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.XPathPrecedingIterator4415         public void Create(System.Xml.XPath.XPathNavigator context, System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.XPathPrecedingIterator4416         public bool MoveNext() { throw null; }
4417     }
4418     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4419     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
4420     public partial struct XPathPrecedingMergeIterator
4421     {
4422         public System.Xml.XPath.XPathNavigator Current { get { throw null; } }
CreateSystem.Xml.Xsl.Runtime.XPathPrecedingMergeIterator4423         public void Create(System.Xml.Xsl.Runtime.XmlNavigatorFilter filter) { }
MoveNextSystem.Xml.Xsl.Runtime.XPathPrecedingMergeIterator4424         public System.Xml.Xsl.Runtime.IteratorResult MoveNext(System.Xml.XPath.XPathNavigator input) { throw null; }
4425     }
4426     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4427     public static partial class XsltConvert
4428     {
EnsureNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4429         public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> EnsureNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToBoolean(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4430         public static bool ToBoolean(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToBoolean(System.Xml.XPath.XPathItem item)4431         public static bool ToBoolean(System.Xml.XPath.XPathItem item) { throw null; }
ToDateTime(string value)4432         public static System.DateTime ToDateTime(string value) { throw null; }
ToDecimal(double value)4433         public static decimal ToDecimal(double value) { throw null; }
ToDouble(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4434         public static double ToDouble(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToDouble(decimal value)4435         public static double ToDouble(decimal value) { throw null; }
ToDouble(int value)4436         public static double ToDouble(int value) { throw null; }
ToDouble(long value)4437         public static double ToDouble(long value) { throw null; }
ToDouble(string value)4438         public static double ToDouble(string value) { throw null; }
ToDouble(System.Xml.XPath.XPathItem item)4439         public static double ToDouble(System.Xml.XPath.XPathItem item) { throw null; }
ToInt(double value)4440         public static int ToInt(double value) { throw null; }
ToLong(double value)4441         public static long ToLong(double value) { throw null; }
ToNode(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4442         public static System.Xml.XPath.XPathNavigator ToNode(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToNode(System.Xml.XPath.XPathItem item)4443         public static System.Xml.XPath.XPathNavigator ToNode(System.Xml.XPath.XPathItem item) { throw null; }
ToNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4444         public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ToNodeSet(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToNodeSet(System.Xml.XPath.XPathItem item)4445         public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ToNodeSet(System.Xml.XPath.XPathItem item) { throw null; }
ToString(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems)4446         public static string ToString(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems) { throw null; }
ToString(System.DateTime value)4447         public static string ToString(System.DateTime value) { throw null; }
ToString(double value)4448         public static string ToString(double value) { throw null; }
ToString(System.Xml.XPath.XPathItem item)4449         public static string ToString(System.Xml.XPath.XPathItem item) { throw null; }
4450     }
4451     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4452     public static partial class XsltFunctions
4453     {
BaseUri(System.Xml.XPath.XPathNavigator navigator)4454         public static string BaseUri(System.Xml.XPath.XPathNavigator navigator) { throw null; }
Contains(string s1, string s2)4455         public static bool Contains(string s1, string s2) { throw null; }
EXslObjectType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value)4456         public static string EXslObjectType(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value) { throw null; }
Lang(string value, System.Xml.XPath.XPathNavigator context)4457         public static bool Lang(string value, System.Xml.XPath.XPathNavigator context) { throw null; }
MSFormatDateTime(string dateTime, string format, string lang, bool isDate)4458         public static string MSFormatDateTime(string dateTime, string format, string lang, bool isDate) { throw null; }
MSLocalName(string name)4459         public static string MSLocalName(string name) { throw null; }
MSNamespaceUri(string name, System.Xml.XPath.XPathNavigator currentNode)4460         public static string MSNamespaceUri(string name, System.Xml.XPath.XPathNavigator currentNode) { throw null; }
MSNumber(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value)4461         public static double MSNumber(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value) { throw null; }
MSStringCompare(string s1, string s2, string lang, string options)4462         public static double MSStringCompare(string s1, string s2, string lang, string options) { throw null; }
MSUtc(string dateTime)4463         public static string MSUtc(string dateTime) { throw null; }
NormalizeSpace(string value)4464         public static string NormalizeSpace(string value) { throw null; }
OuterXml(System.Xml.XPath.XPathNavigator navigator)4465         public static string OuterXml(System.Xml.XPath.XPathNavigator navigator) { throw null; }
Round(double value)4466         public static double Round(double value) { throw null; }
StartsWith(string s1, string s2)4467         public static bool StartsWith(string s1, string s2) { throw null; }
Substring(string value, double startIndex)4468         public static string Substring(string value, double startIndex) { throw null; }
Substring(string value, double startIndex, double length)4469         public static string Substring(string value, double startIndex, double length) { throw null; }
SubstringAfter(string s1, string s2)4470         public static string SubstringAfter(string s1, string s2) { throw null; }
SubstringBefore(string s1, string s2)4471         public static string SubstringBefore(string s1, string s2) { throw null; }
SystemProperty(System.Xml.XmlQualifiedName name)4472         public static System.Xml.XPath.XPathItem SystemProperty(System.Xml.XmlQualifiedName name) { throw null; }
Translate(string arg, string mapString, string transString)4473         public static string Translate(string arg, string mapString, string transString) { throw null; }
4474     }
4475     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
4476     public sealed partial class XsltLibrary
4477     {
XsltLibrary()4478         internal XsltLibrary() { }
CheckScriptNamespace(string nsUri)4479         public int CheckScriptNamespace(string nsUri) { throw null; }
ElementAvailable(System.Xml.XmlQualifiedName name)4480         public bool ElementAvailable(System.Xml.XmlQualifiedName name) { throw null; }
EqualityOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right)4481         public bool EqualityOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right) { throw null; }
FormatMessage(string res, System.Collections.Generic.IList<string> args)4482         public string FormatMessage(string res, System.Collections.Generic.IList<string> args) { throw null; }
FormatNumberDynamic(double value, string formatPicture, System.Xml.XmlQualifiedName decimalFormatName, string errorMessageName)4483         public string FormatNumberDynamic(double value, string formatPicture, System.Xml.XmlQualifiedName decimalFormatName, string errorMessageName) { throw null; }
FormatNumberStatic(double value, double decimalFormatterIndex)4484         public string FormatNumberStatic(double value, double decimalFormatterIndex) { throw null; }
FunctionAvailable(System.Xml.XmlQualifiedName name)4485         public bool FunctionAvailable(System.Xml.XmlQualifiedName name) { throw null; }
IsSameNodeSort(System.Xml.XPath.XPathNavigator nav1, System.Xml.XPath.XPathNavigator nav2)4486         public bool IsSameNodeSort(System.Xml.XPath.XPathNavigator nav1, System.Xml.XPath.XPathNavigator nav2) { throw null; }
LangToLcid(string lang, bool forwardCompatibility)4487         public int LangToLcid(string lang, bool forwardCompatibility) { throw null; }
NumberFormat(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value, string formatString, double lang, string letterValue, string groupingSeparator, double groupingSize)4488         public string NumberFormat(System.Collections.Generic.IList<System.Xml.XPath.XPathItem> value, string formatString, double lang, string letterValue, string groupingSeparator, double groupingSize) { throw null; }
RegisterDecimalFormat(System.Xml.XmlQualifiedName name, string infinitySymbol, string nanSymbol, string characters)4489         public int RegisterDecimalFormat(System.Xml.XmlQualifiedName name, string infinitySymbol, string nanSymbol, string characters) { throw null; }
RegisterDecimalFormatter(string formatPicture, string infinitySymbol, string nanSymbol, string characters)4490         public double RegisterDecimalFormatter(string formatPicture, string infinitySymbol, string nanSymbol, string characters) { throw null; }
RelationalOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right)4491         public bool RelationalOperator(double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right) { throw null; }
4492     }
4493 }
4494