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