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