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