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