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