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 // Changes to this file must follow the http://aka.ms/api-review process.
6 // ------------------------------------------------------------------------------
7 
8 
9 namespace System.Xml
10 {
11     public enum ConformanceLevel
12     {
13         Auto = 0,
14         Document = 2,
15         Fragment = 1,
16     }
17     public enum DtdProcessing
18     {
19         Ignore = 1,
20         Parse = 2,
21         Prohibit = 0,
22     }
23     public enum EntityHandling
24     {
25         ExpandCharEntities = 2,
26         ExpandEntities = 1,
27     }
28     public enum Formatting
29     {
30         Indented = 1,
31         None = 0,
32     }
33     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
34     [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
35     public partial interface IApplicationResourceStreamResolver
36     {
37         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
38         [System.ObsoleteAttribute("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
GetApplicationResourceStream(System.Uri relativeUri)39         System.IO.Stream GetApplicationResourceStream(System.Uri relativeUri);
40     }
41     public partial interface IHasXmlNode
42     {
GetNode()43         System.Xml.XmlNode GetNode();
44     }
45     public partial interface IXmlLineInfo
46     {
47         int LineNumber { get; }
48         int LinePosition { get; }
HasLineInfo()49         bool HasLineInfo();
50     }
51     public partial interface IXmlNamespaceResolver
52     {
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)53         System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope);
LookupNamespace(string prefix)54         string LookupNamespace(string prefix);
LookupPrefix(string namespaceName)55         string LookupPrefix(string namespaceName);
56     }
57     [System.FlagsAttribute]
58     public enum NamespaceHandling
59     {
60         Default = 0,
61         OmitDuplicates = 1,
62     }
63     public partial class NameTable : System.Xml.XmlNameTable
64     {
NameTable()65         public NameTable() { }
Add(char[] key, int start, int len)66         public override string Add(char[] key, int start, int len) { throw null; }
Add(string key)67         public override string Add(string key) { throw null; }
Get(char[] key, int start, int len)68         public override string Get(char[] key, int start, int len) { throw null; }
Get(string value)69         public override string Get(string value) { throw null; }
70     }
71     public enum NewLineHandling
72     {
73         Entitize = 1,
74         None = 2,
75         Replace = 0,
76     }
77     public enum ReadState
78     {
79         Closed = 4,
80         EndOfFile = 3,
81         Error = 2,
82         Initial = 0,
83         Interactive = 1,
84     }
85     public enum ValidationType
86     {
87         [System.ObsoleteAttribute("Validation type should be specified as DTD or Schema.")]
88         Auto = 1,
89         DTD = 2,
90         None = 0,
91         Schema = 4,
92         [System.ObsoleteAttribute("XDR Validation through XmlValidatingReader is obsoleted")]
93         XDR = 3,
94     }
95     public enum WhitespaceHandling
96     {
97         All = 0,
98         None = 2,
99         Significant = 1,
100     }
101     public enum WriteState
102     {
103         Attribute = 3,
104         Closed = 5,
105         Content = 4,
106         Element = 2,
107         Error = 6,
108         Prolog = 1,
109         Start = 0,
110     }
111     public partial class XmlAttribute : System.Xml.XmlNode
112     {
XmlAttribute(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc)113         protected internal XmlAttribute(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc) { }
114         public override string BaseURI { get { throw null; } }
115         public override string InnerText { set { } }
116         public override string InnerXml { set { } }
117         public override string LocalName { get { throw null; } }
118         public override string Name { get { throw null; } }
119         public override string NamespaceURI { get { throw null; } }
120         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
121         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
122         public virtual System.Xml.XmlElement OwnerElement { get { throw null; } }
123         public override System.Xml.XmlNode ParentNode { get { throw null; } }
124         public override string Prefix { get { throw null; } set { } }
125         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
126         public virtual bool Specified { get { throw null; } }
127         public override string Value { get { throw null; } set { } }
AppendChild(System.Xml.XmlNode newChild)128         public override System.Xml.XmlNode AppendChild(System.Xml.XmlNode newChild) { throw null; }
CloneNode(bool deep)129         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)130         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)131         public override System.Xml.XmlNode InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
PrependChild(System.Xml.XmlNode newChild)132         public override System.Xml.XmlNode PrependChild(System.Xml.XmlNode newChild) { throw null; }
RemoveChild(System.Xml.XmlNode oldChild)133         public override System.Xml.XmlNode RemoveChild(System.Xml.XmlNode oldChild) { throw null; }
ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild)134         public override System.Xml.XmlNode ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)135         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)136         public override void WriteTo(System.Xml.XmlWriter w) { }
137     }
138     public sealed partial class XmlAttributeCollection : System.Xml.XmlNamedNodeMap, System.Collections.ICollection, System.Collections.IEnumerable
139     {
XmlAttributeCollection()140         internal XmlAttributeCollection() { }
141         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
142         public System.Xml.XmlAttribute this[int i] { get { throw null; } }
143         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
144         public System.Xml.XmlAttribute this[string name] { get { throw null; } }
145         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
146         public System.Xml.XmlAttribute this[string localName, string namespaceURI] { get { throw null; } }
147         int System.Collections.ICollection.Count { get { throw null; } }
148         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
149         object System.Collections.ICollection.SyncRoot { get { throw null; } }
Append(System.Xml.XmlAttribute node)150         public System.Xml.XmlAttribute Append(System.Xml.XmlAttribute node) { throw null; }
CopyTo(System.Xml.XmlAttribute[] array, int index)151         public void CopyTo(System.Xml.XmlAttribute[] array, int index) { }
InsertAfter(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode)152         public System.Xml.XmlAttribute InsertAfter(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode) { throw null; }
InsertBefore(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode)153         public System.Xml.XmlAttribute InsertBefore(System.Xml.XmlAttribute newNode, System.Xml.XmlAttribute refNode) { throw null; }
Prepend(System.Xml.XmlAttribute node)154         public System.Xml.XmlAttribute Prepend(System.Xml.XmlAttribute node) { throw null; }
Remove(System.Xml.XmlAttribute node)155         public System.Xml.XmlAttribute Remove(System.Xml.XmlAttribute node) { throw null; }
RemoveAll()156         public void RemoveAll() { }
RemoveAt(int i)157         public System.Xml.XmlAttribute RemoveAt(int i) { throw null; }
SetNamedItem(System.Xml.XmlNode node)158         public override System.Xml.XmlNode SetNamedItem(System.Xml.XmlNode node) { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)159         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
160     }
161     public partial class XmlCDataSection : System.Xml.XmlCharacterData
162     {
XmlCDataSection(string data, System.Xml.XmlDocument doc)163         protected internal XmlCDataSection(string data, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
164         public override string LocalName { get { throw null; } }
165         public override string Name { get { throw null; } }
166         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
167         public override System.Xml.XmlNode ParentNode { get { throw null; } }
168         public override System.Xml.XmlNode PreviousText { get { throw null; } }
CloneNode(bool deep)169         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)170         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)171         public override void WriteTo(System.Xml.XmlWriter w) { }
172     }
173     public abstract partial class XmlCharacterData : System.Xml.XmlLinkedNode
174     {
XmlCharacterData(string data, System.Xml.XmlDocument doc)175         protected internal XmlCharacterData(string data, System.Xml.XmlDocument doc) { }
176         public virtual string Data { get { throw null; } set { } }
177         public override string InnerText { get { throw null; } set { } }
178         public virtual int Length { get { throw null; } }
179         public override string Value { get { throw null; } set { } }
AppendData(string strData)180         public virtual void AppendData(string strData) { }
DeleteData(int offset, int count)181         public virtual void DeleteData(int offset, int count) { }
InsertData(int offset, string strData)182         public virtual void InsertData(int offset, string strData) { }
ReplaceData(int offset, int count, string strData)183         public virtual void ReplaceData(int offset, int count, string strData) { }
Substring(int offset, int count)184         public virtual string Substring(int offset, int count) { throw null; }
185     }
186     public partial class XmlComment : System.Xml.XmlCharacterData
187     {
XmlComment(string comment, System.Xml.XmlDocument doc)188         protected internal XmlComment(string comment, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
189         public override string LocalName { get { throw null; } }
190         public override string Name { get { throw null; } }
191         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
CloneNode(bool deep)192         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)193         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)194         public override void WriteTo(System.Xml.XmlWriter w) { }
195     }
196     public partial class XmlConvert
197     {
XmlConvert()198         public XmlConvert() { }
DecodeName(string name)199         public static string DecodeName(string name) { throw null; }
EncodeLocalName(string name)200         public static string EncodeLocalName(string name) { throw null; }
EncodeName(string name)201         public static string EncodeName(string name) { throw null; }
EncodeNmToken(string name)202         public static string EncodeNmToken(string name) { throw null; }
IsNCNameChar(char ch)203         public static bool IsNCNameChar(char ch) { throw null; }
IsPublicIdChar(char ch)204         public static bool IsPublicIdChar(char ch) { throw null; }
IsStartNCNameChar(char ch)205         public static bool IsStartNCNameChar(char ch) { throw null; }
IsWhitespaceChar(char ch)206         public static bool IsWhitespaceChar(char ch) { throw null; }
IsXmlChar(char ch)207         public static bool IsXmlChar(char ch) { throw null; }
IsXmlSurrogatePair(char lowChar, char highChar)208         public static bool IsXmlSurrogatePair(char lowChar, char highChar) { throw null; }
ToBoolean(string s)209         public static bool ToBoolean(string s) { throw null; }
ToByte(string s)210         public static byte ToByte(string s) { throw null; }
ToChar(string s)211         public static char ToChar(string s) { throw null; }
212         [System.ObsoleteAttribute("Use XmlConvert.ToDateTime() that takes in XmlDateTimeSerializationMode")]
ToDateTime(string s)213         public static System.DateTime ToDateTime(string s) { throw null; }
ToDateTime(string s, string format)214         public static System.DateTime ToDateTime(string s, string format) { throw null; }
ToDateTime(string s, string[] formats)215         public static System.DateTime ToDateTime(string s, string[] formats) { throw null; }
ToDateTime(string s, System.Xml.XmlDateTimeSerializationMode dateTimeOption)216         public static System.DateTime ToDateTime(string s, System.Xml.XmlDateTimeSerializationMode dateTimeOption) { throw null; }
ToDateTimeOffset(string s)217         public static System.DateTimeOffset ToDateTimeOffset(string s) { throw null; }
ToDateTimeOffset(string s, string format)218         public static System.DateTimeOffset ToDateTimeOffset(string s, string format) { throw null; }
ToDateTimeOffset(string s, string[] formats)219         public static System.DateTimeOffset ToDateTimeOffset(string s, string[] formats) { throw null; }
ToDecimal(string s)220         public static decimal ToDecimal(string s) { throw null; }
ToDouble(string s)221         public static double ToDouble(string s) { throw null; }
ToGuid(string s)222         public static System.Guid ToGuid(string s) { throw null; }
ToInt16(string s)223         public static short ToInt16(string s) { throw null; }
ToInt32(string s)224         public static int ToInt32(string s) { throw null; }
ToInt64(string s)225         public static long ToInt64(string s) { throw null; }
226         [System.CLSCompliantAttribute(false)]
ToSByte(string s)227         public static sbyte ToSByte(string s) { throw null; }
ToSingle(string s)228         public static float ToSingle(string s) { throw null; }
ToString(bool value)229         public static string ToString(bool value) { throw null; }
ToString(byte value)230         public static string ToString(byte value) { throw null; }
ToString(char value)231         public static string ToString(char value) { throw null; }
232         [System.ObsoleteAttribute("Use XmlConvert.ToString() that takes in XmlDateTimeSerializationMode")]
ToString(System.DateTime value)233         public static string ToString(System.DateTime value) { throw null; }
ToString(System.DateTime value, string format)234         public static string ToString(System.DateTime value, string format) { throw null; }
ToString(System.DateTime value, System.Xml.XmlDateTimeSerializationMode dateTimeOption)235         public static string ToString(System.DateTime value, System.Xml.XmlDateTimeSerializationMode dateTimeOption) { throw null; }
ToString(System.DateTimeOffset value)236         public static string ToString(System.DateTimeOffset value) { throw null; }
ToString(System.DateTimeOffset value, string format)237         public static string ToString(System.DateTimeOffset value, string format) { throw null; }
ToString(decimal value)238         public static string ToString(decimal value) { throw null; }
ToString(double value)239         public static string ToString(double value) { throw null; }
ToString(System.Guid value)240         public static string ToString(System.Guid value) { throw null; }
ToString(short value)241         public static string ToString(short value) { throw null; }
ToString(int value)242         public static string ToString(int value) { throw null; }
ToString(long value)243         public static string ToString(long value) { throw null; }
244         [System.CLSCompliantAttribute(false)]
ToString(sbyte value)245         public static string ToString(sbyte value) { throw null; }
ToString(float value)246         public static string ToString(float value) { throw null; }
ToString(System.TimeSpan value)247         public static string ToString(System.TimeSpan value) { throw null; }
248         [System.CLSCompliantAttribute(false)]
ToString(ushort value)249         public static string ToString(ushort value) { throw null; }
250         [System.CLSCompliantAttribute(false)]
ToString(uint value)251         public static string ToString(uint value) { throw null; }
252         [System.CLSCompliantAttribute(false)]
ToString(ulong value)253         public static string ToString(ulong value) { throw null; }
ToTimeSpan(string s)254         public static System.TimeSpan ToTimeSpan(string s) { throw null; }
255         [System.CLSCompliantAttribute(false)]
ToUInt16(string s)256         public static ushort ToUInt16(string s) { throw null; }
257         [System.CLSCompliantAttribute(false)]
ToUInt32(string s)258         public static uint ToUInt32(string s) { throw null; }
259         [System.CLSCompliantAttribute(false)]
ToUInt64(string s)260         public static ulong ToUInt64(string s) { throw null; }
VerifyName(string name)261         public static string VerifyName(string name) { throw null; }
VerifyNCName(string name)262         public static string VerifyNCName(string name) { throw null; }
VerifyNMTOKEN(string name)263         public static string VerifyNMTOKEN(string name) { throw null; }
VerifyPublicId(string publicId)264         public static string VerifyPublicId(string publicId) { throw null; }
VerifyTOKEN(string token)265         public static string VerifyTOKEN(string token) { throw null; }
VerifyWhitespace(string content)266         public static string VerifyWhitespace(string content) { throw null; }
VerifyXmlChars(string content)267         public static string VerifyXmlChars(string content) { throw null; }
268     }
269     public enum XmlDateTimeSerializationMode
270     {
271         Local = 0,
272         RoundtripKind = 3,
273         Unspecified = 2,
274         Utc = 1,
275     }
276     public partial class XmlDeclaration : System.Xml.XmlLinkedNode
277     {
XmlDeclaration(string version, string encoding, string standalone, System.Xml.XmlDocument doc)278         protected internal XmlDeclaration(string version, string encoding, string standalone, System.Xml.XmlDocument doc) { }
279         public string Encoding { get { throw null; } set { } }
280         public override string InnerText { get { throw null; } set { } }
281         public override string LocalName { get { throw null; } }
282         public override string Name { get { throw null; } }
283         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
284         public string Standalone { get { throw null; } set { } }
285         public override string Value { get { throw null; } set { } }
286         public string Version { get { throw null; } }
CloneNode(bool deep)287         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)288         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)289         public override void WriteTo(System.Xml.XmlWriter w) { }
290     }
291     public partial class XmlDocument : System.Xml.XmlNode
292     {
XmlDocument()293         public XmlDocument() { }
XmlDocument(System.Xml.XmlImplementation imp)294         protected internal XmlDocument(System.Xml.XmlImplementation imp) { }
XmlDocument(System.Xml.XmlNameTable nt)295         public XmlDocument(System.Xml.XmlNameTable nt) { }
296         public override string BaseURI { get { throw null; } }
297         public System.Xml.XmlElement DocumentElement { get { throw null; } }
298         public virtual System.Xml.XmlDocumentType DocumentType { get { throw null; } }
299         public System.Xml.XmlImplementation Implementation { get { throw null; } }
300         public override string InnerText { set { } }
301         public override string InnerXml { get { throw null; } set { } }
302         public override bool IsReadOnly { get { throw null; } }
303         public override string LocalName { get { throw null; } }
304         public override string Name { get { throw null; } }
305         public System.Xml.XmlNameTable NameTable { get { throw null; } }
306         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
307         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
308         public override System.Xml.XmlNode ParentNode { get { throw null; } }
309         public bool PreserveWhitespace { get { throw null; } set { } }
310         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
311         public System.Xml.Schema.XmlSchemaSet Schemas { get { throw null; } set { } }
312         public virtual System.Xml.XmlResolver XmlResolver { set { } }
313         public event System.Xml.XmlNodeChangedEventHandler NodeChanged { add { } remove { } }
314         public event System.Xml.XmlNodeChangedEventHandler NodeChanging { add { } remove { } }
315         public event System.Xml.XmlNodeChangedEventHandler NodeInserted { add { } remove { } }
316         public event System.Xml.XmlNodeChangedEventHandler NodeInserting { add { } remove { } }
317         public event System.Xml.XmlNodeChangedEventHandler NodeRemoved { add { } remove { } }
318         public event System.Xml.XmlNodeChangedEventHandler NodeRemoving { add { } remove { } }
CloneNode(bool deep)319         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
CreateAttribute(string name)320         public System.Xml.XmlAttribute CreateAttribute(string name) { throw null; }
CreateAttribute(string qualifiedName, string namespaceURI)321         public System.Xml.XmlAttribute CreateAttribute(string qualifiedName, string namespaceURI) { throw null; }
CreateAttribute(string prefix, string localName, string namespaceURI)322         public virtual System.Xml.XmlAttribute CreateAttribute(string prefix, string localName, string namespaceURI) { throw null; }
CreateCDataSection(string data)323         public virtual System.Xml.XmlCDataSection CreateCDataSection(string data) { throw null; }
CreateComment(string data)324         public virtual System.Xml.XmlComment CreateComment(string data) { throw null; }
CreateDefaultAttribute(string prefix, string localName, string namespaceURI)325         protected internal virtual System.Xml.XmlAttribute CreateDefaultAttribute(string prefix, string localName, string namespaceURI) { throw null; }
CreateDocumentFragment()326         public virtual System.Xml.XmlDocumentFragment CreateDocumentFragment() { throw null; }
CreateDocumentType(string name, string publicId, string systemId, string internalSubset)327         public virtual System.Xml.XmlDocumentType CreateDocumentType(string name, string publicId, string systemId, string internalSubset) { throw null; }
CreateElement(string name)328         public System.Xml.XmlElement CreateElement(string name) { throw null; }
CreateElement(string qualifiedName, string namespaceURI)329         public System.Xml.XmlElement CreateElement(string qualifiedName, string namespaceURI) { throw null; }
CreateElement(string prefix, string localName, string namespaceURI)330         public virtual System.Xml.XmlElement CreateElement(string prefix, string localName, string namespaceURI) { throw null; }
CreateEntityReference(string name)331         public virtual System.Xml.XmlEntityReference CreateEntityReference(string name) { throw null; }
CreateNavigator()332         public override System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
CreateNavigator(System.Xml.XmlNode node)333         protected internal virtual System.Xml.XPath.XPathNavigator CreateNavigator(System.Xml.XmlNode node) { throw null; }
CreateNode(string nodeTypeString, string name, string namespaceURI)334         public virtual System.Xml.XmlNode CreateNode(string nodeTypeString, string name, string namespaceURI) { throw null; }
CreateNode(System.Xml.XmlNodeType type, string name, string namespaceURI)335         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)336         public virtual System.Xml.XmlNode CreateNode(System.Xml.XmlNodeType type, string prefix, string name, string namespaceURI) { throw null; }
CreateProcessingInstruction(string target, string data)337         public virtual System.Xml.XmlProcessingInstruction CreateProcessingInstruction(string target, string data) { throw null; }
CreateSignificantWhitespace(string text)338         public virtual System.Xml.XmlSignificantWhitespace CreateSignificantWhitespace(string text) { throw null; }
CreateTextNode(string text)339         public virtual System.Xml.XmlText CreateTextNode(string text) { throw null; }
CreateWhitespace(string text)340         public virtual System.Xml.XmlWhitespace CreateWhitespace(string text) { throw null; }
CreateXmlDeclaration(string version, string encoding, string standalone)341         public virtual System.Xml.XmlDeclaration CreateXmlDeclaration(string version, string encoding, string standalone) { throw null; }
GetElementById(string elementId)342         public virtual System.Xml.XmlElement GetElementById(string elementId) { throw null; }
GetElementsByTagName(string name)343         public virtual System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetElementsByTagName(string localName, string namespaceURI)344         public virtual System.Xml.XmlNodeList GetElementsByTagName(string localName, string namespaceURI) { throw null; }
ImportNode(System.Xml.XmlNode node, bool deep)345         public virtual System.Xml.XmlNode ImportNode(System.Xml.XmlNode node, bool deep) { throw null; }
Load(System.IO.Stream inStream)346         public virtual void Load(System.IO.Stream inStream) { }
Load(System.IO.TextReader txtReader)347         public virtual void Load(System.IO.TextReader txtReader) { }
Load(string filename)348         public virtual void Load(string filename) { }
Load(System.Xml.XmlReader reader)349         public virtual void Load(System.Xml.XmlReader reader) { }
LoadXml(string xml)350         public virtual void LoadXml(string xml) { }
ReadNode(System.Xml.XmlReader reader)351         public virtual System.Xml.XmlNode ReadNode(System.Xml.XmlReader reader) { throw null; }
Save(System.IO.Stream outStream)352         public virtual void Save(System.IO.Stream outStream) { }
Save(System.IO.TextWriter writer)353         public virtual void Save(System.IO.TextWriter writer) { }
Save(string filename)354         public virtual void Save(string filename) { }
Save(System.Xml.XmlWriter w)355         public virtual void Save(System.Xml.XmlWriter w) { }
Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler)356         public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler) { }
Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlNode nodeToValidate)357         public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlNode nodeToValidate) { }
WriteContentTo(System.Xml.XmlWriter xw)358         public override void WriteContentTo(System.Xml.XmlWriter xw) { }
WriteTo(System.Xml.XmlWriter w)359         public override void WriteTo(System.Xml.XmlWriter w) { }
360     }
361     public partial class XmlDocumentFragment : System.Xml.XmlNode
362     {
XmlDocumentFragment(System.Xml.XmlDocument ownerDocument)363         protected internal XmlDocumentFragment(System.Xml.XmlDocument ownerDocument) { }
364         public override string InnerXml { get { throw null; } set { } }
365         public override string LocalName { get { throw null; } }
366         public override string Name { get { throw null; } }
367         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
368         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
369         public override System.Xml.XmlNode ParentNode { get { throw null; } }
CloneNode(bool deep)370         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)371         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)372         public override void WriteTo(System.Xml.XmlWriter w) { }
373     }
374     public partial class XmlDocumentType : System.Xml.XmlLinkedNode
375     {
XmlDocumentType(string name, string publicId, string systemId, string internalSubset, System.Xml.XmlDocument doc)376         protected internal XmlDocumentType(string name, string publicId, string systemId, string internalSubset, System.Xml.XmlDocument doc) { }
377         public System.Xml.XmlNamedNodeMap Entities { get { throw null; } }
378         public string InternalSubset { get { throw null; } }
379         public override bool IsReadOnly { get { throw null; } }
380         public override string LocalName { get { throw null; } }
381         public override string Name { get { throw null; } }
382         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
383         public System.Xml.XmlNamedNodeMap Notations { get { throw null; } }
384         public string PublicId { get { throw null; } }
385         public string SystemId { get { throw null; } }
CloneNode(bool deep)386         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)387         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)388         public override void WriteTo(System.Xml.XmlWriter w) { }
389     }
390     public partial class XmlElement : System.Xml.XmlLinkedNode
391     {
XmlElement(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc)392         protected internal XmlElement(string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc) { }
393         public override System.Xml.XmlAttributeCollection Attributes { get { throw null; } }
394         public virtual bool HasAttributes { get { throw null; } }
395         public override string InnerText { get { throw null; } set { } }
396         public override string InnerXml { get { throw null; } set { } }
397         public bool IsEmpty { get { throw null; } set { } }
398         public override string LocalName { get { throw null; } }
399         public override string Name { get { throw null; } }
400         public override string NamespaceURI { get { throw null; } }
401         public override System.Xml.XmlNode NextSibling { get { throw null; } }
402         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
403         public override System.Xml.XmlDocument OwnerDocument { get { throw null; } }
404         public override System.Xml.XmlNode ParentNode { get { throw null; } }
405         public override string Prefix { get { throw null; } set { } }
406         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
CloneNode(bool deep)407         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
GetAttribute(string name)408         public virtual string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)409         public virtual string GetAttribute(string localName, string namespaceURI) { throw null; }
GetAttributeNode(string name)410         public virtual System.Xml.XmlAttribute GetAttributeNode(string name) { throw null; }
GetAttributeNode(string localName, string namespaceURI)411         public virtual System.Xml.XmlAttribute GetAttributeNode(string localName, string namespaceURI) { throw null; }
GetElementsByTagName(string name)412         public virtual System.Xml.XmlNodeList GetElementsByTagName(string name) { throw null; }
GetElementsByTagName(string localName, string namespaceURI)413         public virtual System.Xml.XmlNodeList GetElementsByTagName(string localName, string namespaceURI) { throw null; }
HasAttribute(string name)414         public virtual bool HasAttribute(string name) { throw null; }
HasAttribute(string localName, string namespaceURI)415         public virtual bool HasAttribute(string localName, string namespaceURI) { throw null; }
RemoveAll()416         public override void RemoveAll() { }
RemoveAllAttributes()417         public virtual void RemoveAllAttributes() { }
RemoveAttribute(string name)418         public virtual void RemoveAttribute(string name) { }
RemoveAttribute(string localName, string namespaceURI)419         public virtual void RemoveAttribute(string localName, string namespaceURI) { }
RemoveAttributeAt(int i)420         public virtual System.Xml.XmlNode RemoveAttributeAt(int i) { throw null; }
RemoveAttributeNode(string localName, string namespaceURI)421         public virtual System.Xml.XmlAttribute RemoveAttributeNode(string localName, string namespaceURI) { throw null; }
RemoveAttributeNode(System.Xml.XmlAttribute oldAttr)422         public virtual System.Xml.XmlAttribute RemoveAttributeNode(System.Xml.XmlAttribute oldAttr) { throw null; }
SetAttribute(string name, string value)423         public virtual void SetAttribute(string name, string value) { }
SetAttribute(string localName, string namespaceURI, string value)424         public virtual string SetAttribute(string localName, string namespaceURI, string value) { throw null; }
SetAttributeNode(string localName, string namespaceURI)425         public virtual System.Xml.XmlAttribute SetAttributeNode(string localName, string namespaceURI) { throw null; }
SetAttributeNode(System.Xml.XmlAttribute newAttr)426         public virtual System.Xml.XmlAttribute SetAttributeNode(System.Xml.XmlAttribute newAttr) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)427         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)428         public override void WriteTo(System.Xml.XmlWriter w) { }
429     }
430     public partial class XmlEntity : System.Xml.XmlNode
431     {
XmlEntity()432         internal XmlEntity() { }
433         public override string BaseURI { get { throw null; } }
434         public override string InnerText { get { throw null; } set { } }
435         public override string InnerXml { get { throw null; } set { } }
436         public override bool IsReadOnly { get { throw null; } }
437         public override string LocalName { get { throw null; } }
438         public override string Name { get { throw null; } }
439         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
440         public string NotationName { get { throw null; } }
441         public override string OuterXml { get { throw null; } }
442         public string PublicId { get { throw null; } }
443         public string SystemId { get { throw null; } }
CloneNode(bool deep)444         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)445         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)446         public override void WriteTo(System.Xml.XmlWriter w) { }
447     }
448     public partial class XmlEntityReference : System.Xml.XmlLinkedNode
449     {
XmlEntityReference(string name, System.Xml.XmlDocument doc)450         protected internal XmlEntityReference(string name, System.Xml.XmlDocument doc) { }
451         public override string BaseURI { get { throw null; } }
452         public override bool IsReadOnly { get { throw null; } }
453         public override string LocalName { get { throw null; } }
454         public override string Name { get { throw null; } }
455         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
456         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)457         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)458         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)459         public override void WriteTo(System.Xml.XmlWriter w) { }
460     }
461     public partial class XmlException : System.SystemException
462     {
XmlException()463         public XmlException() { }
XmlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)464         protected XmlException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlException(string message)465         public XmlException(string message) { }
XmlException(string message, System.Exception innerException)466         public XmlException(string message, System.Exception innerException) { }
XmlException(string message, System.Exception innerException, int lineNumber, int linePosition)467         public XmlException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
468         public int LineNumber { get { throw null; } }
469         public int LinePosition { get { throw null; } }
470         public override string Message { get { throw null; } }
471         public string SourceUri { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)472         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
473     }
474     public partial class XmlImplementation
475     {
XmlImplementation()476         public XmlImplementation() { }
XmlImplementation(System.Xml.XmlNameTable nt)477         public XmlImplementation(System.Xml.XmlNameTable nt) { }
CreateDocument()478         public virtual System.Xml.XmlDocument CreateDocument() { throw null; }
HasFeature(string strFeature, string strVersion)479         public bool HasFeature(string strFeature, string strVersion) { throw null; }
480     }
481     public abstract partial class XmlLinkedNode : System.Xml.XmlNode
482     {
XmlLinkedNode()483         internal XmlLinkedNode() { }
484         public override System.Xml.XmlNode NextSibling { get { throw null; } }
485         public override System.Xml.XmlNode PreviousSibling { get { throw null; } }
486     }
487     public partial class XmlNamedNodeMap : System.Collections.IEnumerable
488     {
XmlNamedNodeMap()489         internal XmlNamedNodeMap() { }
490         public virtual int Count { get { throw null; } }
GetEnumerator()491         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamedItem(string name)492         public virtual System.Xml.XmlNode GetNamedItem(string name) { throw null; }
GetNamedItem(string localName, string namespaceURI)493         public virtual System.Xml.XmlNode GetNamedItem(string localName, string namespaceURI) { throw null; }
Item(int index)494         public virtual System.Xml.XmlNode Item(int index) { throw null; }
RemoveNamedItem(string name)495         public virtual System.Xml.XmlNode RemoveNamedItem(string name) { throw null; }
RemoveNamedItem(string localName, string namespaceURI)496         public virtual System.Xml.XmlNode RemoveNamedItem(string localName, string namespaceURI) { throw null; }
SetNamedItem(System.Xml.XmlNode node)497         public virtual System.Xml.XmlNode SetNamedItem(System.Xml.XmlNode node) { throw null; }
498     }
499     public partial class XmlNamespaceManager : System.Collections.IEnumerable, System.Xml.IXmlNamespaceResolver
500     {
XmlNamespaceManager(System.Xml.XmlNameTable nameTable)501         public XmlNamespaceManager(System.Xml.XmlNameTable nameTable) { }
502         public virtual string DefaultNamespace { get { throw null; } }
503         public virtual System.Xml.XmlNameTable NameTable { get { throw null; } }
AddNamespace(string prefix, string uri)504         public virtual void AddNamespace(string prefix, string uri) { }
GetEnumerator()505         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)506         public virtual System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
HasNamespace(string prefix)507         public virtual bool HasNamespace(string prefix) { throw null; }
LookupNamespace(string prefix)508         public virtual string LookupNamespace(string prefix) { throw null; }
LookupPrefix(string uri)509         public virtual string LookupPrefix(string uri) { throw null; }
PopScope()510         public virtual bool PopScope() { throw null; }
PushScope()511         public virtual void PushScope() { }
RemoveNamespace(string prefix, string uri)512         public virtual void RemoveNamespace(string prefix, string uri) { }
513     }
514     public enum XmlNamespaceScope
515     {
516         All = 0,
517         ExcludeXml = 1,
518         Local = 2,
519     }
520     public abstract partial class XmlNameTable
521     {
XmlNameTable()522         protected XmlNameTable() { }
Add(char[] array, int offset, int length)523         public abstract string Add(char[] array, int offset, int length);
Add(string array)524         public abstract string Add(string array);
Get(char[] array, int offset, int length)525         public abstract string Get(char[] array, int offset, int length);
Get(string array)526         public abstract string Get(string array);
527     }
528     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
529     public abstract partial class XmlNode : System.Collections.IEnumerable, System.ICloneable, System.Xml.XPath.IXPathNavigable
530     {
XmlNode()531         internal XmlNode() { }
532         public virtual System.Xml.XmlAttributeCollection Attributes { get { throw null; } }
533         public virtual string BaseURI { get { throw null; } }
534         public virtual System.Xml.XmlNodeList ChildNodes { get { throw null; } }
535         public virtual System.Xml.XmlNode FirstChild { get { throw null; } }
536         public virtual bool HasChildNodes { get { throw null; } }
537         public virtual string InnerText { get { throw null; } set { } }
538         public virtual string InnerXml { get { throw null; } set { } }
539         public virtual bool IsReadOnly { get { throw null; } }
540         public virtual System.Xml.XmlElement this[string name] { get { throw null; } }
541         public virtual System.Xml.XmlElement this[string localname, string ns] { get { throw null; } }
542         public virtual System.Xml.XmlNode LastChild { get { throw null; } }
543         public abstract string LocalName { get; }
544         public abstract string Name { get; }
545         public virtual string NamespaceURI { get { throw null; } }
546         public virtual System.Xml.XmlNode NextSibling { get { throw null; } }
547         public abstract System.Xml.XmlNodeType NodeType { get; }
548         public virtual string OuterXml { get { throw null; } }
549         public virtual System.Xml.XmlDocument OwnerDocument { get { throw null; } }
550         public virtual System.Xml.XmlNode ParentNode { get { throw null; } }
551         public virtual string Prefix { get { throw null; } set { } }
552         public virtual System.Xml.XmlNode PreviousSibling { get { throw null; } }
553         public virtual System.Xml.XmlNode PreviousText { get { throw null; } }
554         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
555         public virtual string Value { get { throw null; } set { } }
AppendChild(System.Xml.XmlNode newChild)556         public virtual System.Xml.XmlNode AppendChild(System.Xml.XmlNode newChild) { throw null; }
Clone()557         public virtual System.Xml.XmlNode Clone() { throw null; }
CloneNode(bool deep)558         public abstract System.Xml.XmlNode CloneNode(bool deep);
CreateNavigator()559         public virtual System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
GetEnumerator()560         public System.Collections.IEnumerator GetEnumerator() { throw null; }
GetNamespaceOfPrefix(string prefix)561         public virtual string GetNamespaceOfPrefix(string prefix) { throw null; }
GetPrefixOfNamespace(string namespaceURI)562         public virtual string GetPrefixOfNamespace(string namespaceURI) { throw null; }
InsertAfter(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild)563         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)564         public virtual System.Xml.XmlNode InsertBefore(System.Xml.XmlNode newChild, System.Xml.XmlNode refChild) { throw null; }
Normalize()565         public virtual void Normalize() { }
PrependChild(System.Xml.XmlNode newChild)566         public virtual System.Xml.XmlNode PrependChild(System.Xml.XmlNode newChild) { throw null; }
RemoveAll()567         public virtual void RemoveAll() { }
RemoveChild(System.Xml.XmlNode oldChild)568         public virtual System.Xml.XmlNode RemoveChild(System.Xml.XmlNode oldChild) { throw null; }
ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild)569         public virtual System.Xml.XmlNode ReplaceChild(System.Xml.XmlNode newChild, System.Xml.XmlNode oldChild) { throw null; }
SelectNodes(string xpath)570         public System.Xml.XmlNodeList SelectNodes(string xpath) { throw null; }
SelectNodes(string xpath, System.Xml.XmlNamespaceManager nsmgr)571         public System.Xml.XmlNodeList SelectNodes(string xpath, System.Xml.XmlNamespaceManager nsmgr) { throw null; }
SelectSingleNode(string xpath)572         public System.Xml.XmlNode SelectSingleNode(string xpath) { throw null; }
SelectSingleNode(string xpath, System.Xml.XmlNamespaceManager nsmgr)573         public System.Xml.XmlNode SelectSingleNode(string xpath, System.Xml.XmlNamespaceManager nsmgr) { throw null; }
Supports(string feature, string version)574         public virtual bool Supports(string feature, string version) { throw null; }
System.Collections.IEnumerable.GetEnumerator()575         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
System.ICloneable.Clone()576         object System.ICloneable.Clone() { throw null; }
WriteContentTo(System.Xml.XmlWriter w)577         public abstract void WriteContentTo(System.Xml.XmlWriter w);
WriteTo(System.Xml.XmlWriter w)578         public abstract void WriteTo(System.Xml.XmlWriter w);
579     }
580     public enum XmlNodeChangedAction
581     {
582         Change = 2,
583         Insert = 0,
584         Remove = 1,
585     }
586     public partial class XmlNodeChangedEventArgs : System.EventArgs
587     {
XmlNodeChangedEventArgs(System.Xml.XmlNode node, System.Xml.XmlNode oldParent, System.Xml.XmlNode newParent, string oldValue, string newValue, System.Xml.XmlNodeChangedAction action)588         public XmlNodeChangedEventArgs(System.Xml.XmlNode node, System.Xml.XmlNode oldParent, System.Xml.XmlNode newParent, string oldValue, string newValue, System.Xml.XmlNodeChangedAction action) { }
589         public System.Xml.XmlNodeChangedAction Action { get { throw null; } }
590         public System.Xml.XmlNode NewParent { get { throw null; } }
591         public string NewValue { get { throw null; } }
592         public System.Xml.XmlNode Node { get { throw null; } }
593         public System.Xml.XmlNode OldParent { get { throw null; } }
594         public string OldValue { get { throw null; } }
595     }
XmlNodeChangedEventHandler(object sender, System.Xml.XmlNodeChangedEventArgs e)596     public delegate void XmlNodeChangedEventHandler(object sender, System.Xml.XmlNodeChangedEventArgs e);
597     public abstract partial class XmlNodeList : System.Collections.IEnumerable, System.IDisposable
598     {
XmlNodeList()599         protected XmlNodeList() { }
600         public abstract int Count { get; }
601         [System.Runtime.CompilerServices.IndexerName("ItemOf")]
602         public virtual System.Xml.XmlNode this[int i] { get { throw null; } }
GetEnumerator()603         public abstract System.Collections.IEnumerator GetEnumerator();
Item(int index)604         public abstract System.Xml.XmlNode Item(int index);
PrivateDisposeNodeList()605         protected virtual void PrivateDisposeNodeList() { }
System.IDisposable.Dispose()606         void System.IDisposable.Dispose() { }
607     }
608     public enum XmlNodeOrder
609     {
610         After = 1,
611         Before = 0,
612         Same = 2,
613         Unknown = 3,
614     }
615     public partial class XmlNodeReader : System.Xml.XmlReader, System.Xml.IXmlNamespaceResolver
616     {
XmlNodeReader(System.Xml.XmlNode node)617         public XmlNodeReader(System.Xml.XmlNode node) { }
618         public override int AttributeCount { get { throw null; } }
619         public override string BaseURI { get { throw null; } }
620         public override bool CanReadBinaryContent { get { throw null; } }
621         public override bool CanResolveEntity { get { throw null; } }
622         public override int Depth { get { throw null; } }
623         public override bool EOF { get { throw null; } }
624         public override bool HasAttributes { get { throw null; } }
625         public override bool HasValue { get { throw null; } }
626         public override bool IsDefault { get { throw null; } }
627         public override bool IsEmptyElement { get { throw null; } }
628         public override string LocalName { get { throw null; } }
629         public override string Name { get { throw null; } }
630         public override string NamespaceURI { get { throw null; } }
631         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
632         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
633         public override string Prefix { get { throw null; } }
634         public override System.Xml.ReadState ReadState { get { throw null; } }
635         public override System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
636         public override string Value { get { throw null; } }
637         public override string XmlLang { get { throw null; } }
638         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()639         public override void Close() { }
GetAttribute(int attributeIndex)640         public override string GetAttribute(int attributeIndex) { throw null; }
GetAttribute(string name)641         public override string GetAttribute(string name) { throw null; }
GetAttribute(string name, string namespaceURI)642         public override string GetAttribute(string name, string namespaceURI) { throw null; }
LookupNamespace(string prefix)643         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int attributeIndex)644         public override void MoveToAttribute(int attributeIndex) { }
MoveToAttribute(string name)645         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string name, string namespaceURI)646         public override bool MoveToAttribute(string name, string namespaceURI) { throw null; }
MoveToElement()647         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()648         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()649         public override bool MoveToNextAttribute() { throw null; }
Read()650         public override bool Read() { throw null; }
ReadAttributeValue()651         public override bool ReadAttributeValue() { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)652         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)653         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)654         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)655         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()656         public override string ReadString() { throw null; }
ResolveEntity()657         public override void ResolveEntity() { }
Skip()658         public override void Skip() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)659         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)660         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)661         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
662     }
663     public enum XmlNodeType
664     {
665         Attribute = 2,
666         CDATA = 4,
667         Comment = 8,
668         Document = 9,
669         DocumentFragment = 11,
670         DocumentType = 10,
671         Element = 1,
672         EndElement = 15,
673         EndEntity = 16,
674         Entity = 6,
675         EntityReference = 5,
676         None = 0,
677         Notation = 12,
678         ProcessingInstruction = 7,
679         SignificantWhitespace = 14,
680         Text = 3,
681         Whitespace = 13,
682         XmlDeclaration = 17,
683     }
684     public partial class XmlNotation : System.Xml.XmlNode
685     {
XmlNotation()686         internal XmlNotation() { }
687         public override string InnerXml { get { throw null; } set { } }
688         public override bool IsReadOnly { get { throw null; } }
689         public override string LocalName { get { throw null; } }
690         public override string Name { get { throw null; } }
691         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
692         public override string OuterXml { get { throw null; } }
693         public string PublicId { get { throw null; } }
694         public string SystemId { get { throw null; } }
CloneNode(bool deep)695         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)696         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)697         public override void WriteTo(System.Xml.XmlWriter w) { }
698     }
699     public enum XmlOutputMethod
700     {
701         AutoDetect = 3,
702         Html = 1,
703         Text = 2,
704         Xml = 0,
705     }
706     public partial class XmlParserContext
707     {
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)708         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)709         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)710         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)711         public XmlParserContext(System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc) { }
712         public string BaseURI { get { throw null; } set { } }
713         public string DocTypeName { get { throw null; } set { } }
714         public System.Text.Encoding Encoding { get { throw null; } set { } }
715         public string InternalSubset { get { throw null; } set { } }
716         public System.Xml.XmlNamespaceManager NamespaceManager { get { throw null; } set { } }
717         public System.Xml.XmlNameTable NameTable { get { throw null; } set { } }
718         public string PublicId { get { throw null; } set { } }
719         public string SystemId { get { throw null; } set { } }
720         public string XmlLang { get { throw null; } set { } }
721         public System.Xml.XmlSpace XmlSpace { get { throw null; } set { } }
722     }
723     public partial class XmlProcessingInstruction : System.Xml.XmlLinkedNode
724     {
XmlProcessingInstruction(string target, string data, System.Xml.XmlDocument doc)725         protected internal XmlProcessingInstruction(string target, string data, System.Xml.XmlDocument doc) { }
726         public string Data { get { throw null; } set { } }
727         public override string InnerText { get { throw null; } set { } }
728         public override string LocalName { get { throw null; } }
729         public override string Name { get { throw null; } }
730         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
731         public string Target { get { throw null; } }
732         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)733         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)734         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)735         public override void WriteTo(System.Xml.XmlWriter w) { }
736     }
737     public partial class XmlQualifiedName
738     {
739         public static readonly System.Xml.XmlQualifiedName Empty;
XmlQualifiedName()740         public XmlQualifiedName() { }
XmlQualifiedName(string name)741         public XmlQualifiedName(string name) { }
XmlQualifiedName(string name, string ns)742         public XmlQualifiedName(string name, string ns) { }
743         public bool IsEmpty { get { throw null; } }
744         public string Name { get { throw null; } }
745         public string Namespace { get { throw null; } }
Equals(object other)746         public override bool Equals(object other) { throw null; }
GetHashCode()747         public override int GetHashCode() { throw null; }
operator ==(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b)748         public static bool operator ==(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b) { throw null; }
operator !=(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b)749         public static bool operator !=(System.Xml.XmlQualifiedName a, System.Xml.XmlQualifiedName b) { throw null; }
ToString()750         public override string ToString() { throw null; }
ToString(string name, string ns)751         public static string ToString(string name, string ns) { throw null; }
752     }
753     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
754     [System.Diagnostics.DebuggerDisplayAttribute("{debuggerDisplayProxy}")]
755     public abstract partial class XmlReader : System.IDisposable
756     {
XmlReader()757         protected XmlReader() { }
758         public abstract int AttributeCount { get; }
759         public abstract string BaseURI { get; }
760         public virtual bool CanReadBinaryContent { get { throw null; } }
761         public virtual bool CanReadValueChunk { get { throw null; } }
762         public virtual bool CanResolveEntity { get { throw null; } }
763         public abstract int Depth { get; }
764         public abstract bool EOF { get; }
765         public virtual bool HasAttributes { get { throw null; } }
766         public virtual bool HasValue { get { throw null; } }
767         public virtual bool IsDefault { get { throw null; } }
768         public abstract bool IsEmptyElement { get; }
769         public virtual string this[int i] { get { throw null; } }
770         public virtual string this[string name] { get { throw null; } }
771         public virtual string this[string name, string namespaceURI] { get { throw null; } }
772         public abstract string LocalName { get; }
773         public virtual string Name { get { throw null; } }
774         public abstract string NamespaceURI { get; }
775         public abstract System.Xml.XmlNameTable NameTable { get; }
776         public abstract System.Xml.XmlNodeType NodeType { get; }
777         public abstract string Prefix { get; }
778         public virtual char QuoteChar { get { throw null; } }
779         public abstract System.Xml.ReadState ReadState { get; }
780         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
781         public virtual System.Xml.XmlReaderSettings Settings { get { throw null; } }
782         public abstract string Value { get; }
783         public virtual System.Type ValueType { get { throw null; } }
784         public virtual string XmlLang { get { throw null; } }
785         public virtual System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()786         public virtual void Close() { }
Create(System.IO.Stream input)787         public static System.Xml.XmlReader Create(System.IO.Stream input) { throw null; }
Create(System.IO.Stream input, System.Xml.XmlReaderSettings settings)788         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)789         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)790         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)791         public static System.Xml.XmlReader Create(System.IO.TextReader input) { throw null; }
Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings)792         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)793         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)794         public static System.Xml.XmlReader Create(System.IO.TextReader input, System.Xml.XmlReaderSettings settings, System.Xml.XmlParserContext inputContext) { throw null; }
Create(string inputUri)795         public static System.Xml.XmlReader Create(string inputUri) { throw null; }
Create(string inputUri, System.Xml.XmlReaderSettings settings)796         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)797         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)798         public static System.Xml.XmlReader Create(System.Xml.XmlReader reader, System.Xml.XmlReaderSettings settings) { throw null; }
Dispose()799         public void Dispose() { }
Dispose(bool disposing)800         protected virtual void Dispose(bool disposing) { }
GetAttribute(int i)801         public abstract string GetAttribute(int i);
GetAttribute(string name)802         public abstract string GetAttribute(string name);
GetAttribute(string name, string namespaceURI)803         public abstract string GetAttribute(string name, string namespaceURI);
GetValueAsync()804         public virtual System.Threading.Tasks.Task<string> GetValueAsync() { throw null; }
IsName(string str)805         public static bool IsName(string str) { throw null; }
IsNameToken(string str)806         public static bool IsNameToken(string str) { throw null; }
IsStartElement()807         public virtual bool IsStartElement() { throw null; }
IsStartElement(string name)808         public virtual bool IsStartElement(string name) { throw null; }
IsStartElement(string localname, string ns)809         public virtual bool IsStartElement(string localname, string ns) { throw null; }
LookupNamespace(string prefix)810         public abstract string LookupNamespace(string prefix);
MoveToAttribute(int i)811         public virtual void MoveToAttribute(int i) { }
MoveToAttribute(string name)812         public abstract bool MoveToAttribute(string name);
MoveToAttribute(string name, string ns)813         public abstract bool MoveToAttribute(string name, string ns);
MoveToContent()814         public virtual System.Xml.XmlNodeType MoveToContent() { throw null; }
815         [System.Diagnostics.DebuggerStepThroughAttribute]
MoveToContentAsync()816         public virtual System.Threading.Tasks.Task<System.Xml.XmlNodeType> MoveToContentAsync() { throw null; }
MoveToElement()817         public abstract bool MoveToElement();
MoveToFirstAttribute()818         public abstract bool MoveToFirstAttribute();
MoveToNextAttribute()819         public abstract bool MoveToNextAttribute();
Read()820         public abstract bool Read();
ReadAsync()821         public virtual System.Threading.Tasks.Task<bool> ReadAsync() { throw null; }
ReadAttributeValue()822         public abstract bool ReadAttributeValue();
ReadContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)823         public virtual object ReadContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
824         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)825         public virtual System.Threading.Tasks.Task<object> ReadContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)826         public virtual int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBase64Async(byte[] buffer, int index, int count)827         public virtual System.Threading.Tasks.Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)828         public virtual int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHexAsync(byte[] buffer, int index, int count)829         public virtual System.Threading.Tasks.Task<int> ReadContentAsBinHexAsync(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBoolean()830         public virtual bool ReadContentAsBoolean() { throw null; }
ReadContentAsDateTime()831         public virtual System.DateTime ReadContentAsDateTime() { throw null; }
ReadContentAsDateTimeOffset()832         public virtual System.DateTimeOffset ReadContentAsDateTimeOffset() { throw null; }
ReadContentAsDecimal()833         public virtual decimal ReadContentAsDecimal() { throw null; }
ReadContentAsDouble()834         public virtual double ReadContentAsDouble() { throw null; }
ReadContentAsFloat()835         public virtual float ReadContentAsFloat() { throw null; }
ReadContentAsInt()836         public virtual int ReadContentAsInt() { throw null; }
ReadContentAsLong()837         public virtual long ReadContentAsLong() { throw null; }
ReadContentAsObject()838         public virtual object ReadContentAsObject() { throw null; }
839         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadContentAsObjectAsync()840         public virtual System.Threading.Tasks.Task<object> ReadContentAsObjectAsync() { throw null; }
ReadContentAsString()841         public virtual string ReadContentAsString() { throw null; }
ReadContentAsStringAsync()842         public virtual System.Threading.Tasks.Task<string> ReadContentAsStringAsync() { throw null; }
ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)843         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)844         public virtual object ReadElementContentAs(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver, string localName, string namespaceURI) { throw null; }
845         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadElementContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver)846         public virtual System.Threading.Tasks.Task<object> ReadElementContentAsAsync(System.Type returnType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)847         public virtual int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64Async(byte[] buffer, int index, int count)848         public virtual System.Threading.Tasks.Task<int> ReadElementContentAsBase64Async(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; }
ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)850         public virtual System.Threading.Tasks.Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBoolean()851         public virtual bool ReadElementContentAsBoolean() { throw null; }
ReadElementContentAsBoolean(string localName, string namespaceURI)852         public virtual bool ReadElementContentAsBoolean(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDateTime()853         public virtual System.DateTime ReadElementContentAsDateTime() { throw null; }
ReadElementContentAsDateTime(string localName, string namespaceURI)854         public virtual System.DateTime ReadElementContentAsDateTime(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDecimal()855         public virtual decimal ReadElementContentAsDecimal() { throw null; }
ReadElementContentAsDecimal(string localName, string namespaceURI)856         public virtual decimal ReadElementContentAsDecimal(string localName, string namespaceURI) { throw null; }
ReadElementContentAsDouble()857         public virtual double ReadElementContentAsDouble() { throw null; }
ReadElementContentAsDouble(string localName, string namespaceURI)858         public virtual double ReadElementContentAsDouble(string localName, string namespaceURI) { throw null; }
ReadElementContentAsFloat()859         public virtual float ReadElementContentAsFloat() { throw null; }
ReadElementContentAsFloat(string localName, string namespaceURI)860         public virtual float ReadElementContentAsFloat(string localName, string namespaceURI) { throw null; }
ReadElementContentAsInt()861         public virtual int ReadElementContentAsInt() { throw null; }
ReadElementContentAsInt(string localName, string namespaceURI)862         public virtual int ReadElementContentAsInt(string localName, string namespaceURI) { throw null; }
ReadElementContentAsLong()863         public virtual long ReadElementContentAsLong() { throw null; }
ReadElementContentAsLong(string localName, string namespaceURI)864         public virtual long ReadElementContentAsLong(string localName, string namespaceURI) { throw null; }
ReadElementContentAsObject()865         public virtual object ReadElementContentAsObject() { throw null; }
ReadElementContentAsObject(string localName, string namespaceURI)866         public virtual object ReadElementContentAsObject(string localName, string namespaceURI) { throw null; }
867         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadElementContentAsObjectAsync()868         public virtual System.Threading.Tasks.Task<object> ReadElementContentAsObjectAsync() { throw null; }
ReadElementContentAsString()869         public virtual string ReadElementContentAsString() { throw null; }
ReadElementContentAsString(string localName, string namespaceURI)870         public virtual string ReadElementContentAsString(string localName, string namespaceURI) { throw null; }
871         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadElementContentAsStringAsync()872         public virtual System.Threading.Tasks.Task<string> ReadElementContentAsStringAsync() { throw null; }
873         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString()874         public virtual string ReadElementString() { throw null; }
875         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString(string name)876         public virtual string ReadElementString(string name) { throw null; }
877         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadElementString(string localname, string ns)878         public virtual string ReadElementString(string localname, string ns) { throw null; }
ReadEndElement()879         public virtual void ReadEndElement() { }
ReadInnerXml()880         public virtual string ReadInnerXml() { throw null; }
881         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadInnerXmlAsync()882         public virtual System.Threading.Tasks.Task<string> ReadInnerXmlAsync() { throw null; }
ReadOuterXml()883         public virtual string ReadOuterXml() { throw null; }
884         [System.Diagnostics.DebuggerStepThroughAttribute]
ReadOuterXmlAsync()885         public virtual System.Threading.Tasks.Task<string> ReadOuterXmlAsync() { throw null; }
ReadStartElement()886         public virtual void ReadStartElement() { }
ReadStartElement(string name)887         public virtual void ReadStartElement(string name) { }
ReadStartElement(string localname, string ns)888         public virtual void ReadStartElement(string localname, string ns) { }
889         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
ReadString()890         public virtual string ReadString() { throw null; }
ReadSubtree()891         public virtual System.Xml.XmlReader ReadSubtree() { throw null; }
ReadToDescendant(string name)892         public virtual bool ReadToDescendant(string name) { throw null; }
ReadToDescendant(string localName, string namespaceURI)893         public virtual bool ReadToDescendant(string localName, string namespaceURI) { throw null; }
ReadToFollowing(string name)894         public virtual bool ReadToFollowing(string name) { throw null; }
ReadToFollowing(string localName, string namespaceURI)895         public virtual bool ReadToFollowing(string localName, string namespaceURI) { throw null; }
ReadToNextSibling(string name)896         public virtual bool ReadToNextSibling(string name) { throw null; }
ReadToNextSibling(string localName, string namespaceURI)897         public virtual bool ReadToNextSibling(string localName, string namespaceURI) { throw null; }
ReadValueChunk(char[] buffer, int index, int count)898         public virtual int ReadValueChunk(char[] buffer, int index, int count) { throw null; }
ReadValueChunkAsync(char[] buffer, int index, int count)899         public virtual System.Threading.Tasks.Task<int> ReadValueChunkAsync(char[] buffer, int index, int count) { throw null; }
ResolveEntity()900         public abstract void ResolveEntity();
Skip()901         public virtual void Skip() { }
SkipAsync()902         public virtual System.Threading.Tasks.Task SkipAsync() { throw null; }
903     }
904     public sealed partial class XmlReaderSettings
905     {
XmlReaderSettings()906         public XmlReaderSettings() { }
907         public bool Async { get { throw null; } set { } }
908         public bool CheckCharacters { get { throw null; } set { } }
909         public bool CloseInput { get { throw null; } set { } }
910         public System.Xml.ConformanceLevel ConformanceLevel { get { throw null; } set { } }
911         public System.Xml.DtdProcessing DtdProcessing { get { throw null; } set { } }
912         public bool IgnoreComments { get { throw null; } set { } }
913         public bool IgnoreProcessingInstructions { get { throw null; } set { } }
914         public bool IgnoreWhitespace { get { throw null; } set { } }
915         public int LineNumberOffset { get { throw null; } set { } }
916         public int LinePositionOffset { get { throw null; } set { } }
917         public long MaxCharactersFromEntities { get { throw null; } set { } }
918         public long MaxCharactersInDocument { get { throw null; } set { } }
919         public System.Xml.XmlNameTable NameTable { get { throw null; } set { } }
920         [System.ObsoleteAttribute("Use XmlReaderSettings.DtdProcessing property instead.")]
921         public bool ProhibitDtd { get { throw null; } set { } }
922         public System.Xml.Schema.XmlSchemaSet Schemas { get { throw null; } set { } }
923         public System.Xml.Schema.XmlSchemaValidationFlags ValidationFlags { get { throw null; } set { } }
924         public System.Xml.ValidationType ValidationType { get { throw null; } set { } }
925         public System.Xml.XmlResolver XmlResolver { set { } }
926         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Clone()927         public System.Xml.XmlReaderSettings Clone() { throw null; }
Reset()928         public void Reset() { }
929     }
930     public abstract partial class XmlResolver
931     {
XmlResolver()932         protected XmlResolver() { }
933         public virtual System.Net.ICredentials Credentials { set { } }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)934         public abstract object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn);
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)935         public virtual System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
ResolveUri(System.Uri baseUri, string relativeUri)936         public virtual System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
SupportsType(System.Uri absoluteUri, System.Type type)937         public virtual bool SupportsType(System.Uri absoluteUri, System.Type type) { throw null; }
938     }
939     public partial class XmlSecureResolver : System.Xml.XmlResolver
940     {
941 //CAS        public XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.PermissionSet permissionSet) { }
942 //CAS        public XmlSecureResolver(System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
XmlSecureResolver(System.Xml.XmlResolver resolver, string securityUrl)943         public XmlSecureResolver(System.Xml.XmlResolver resolver, string securityUrl) { }
944         public override System.Net.ICredentials Credentials { set { } }
945 //CAS        public static System.Security.Policy.Evidence CreateEvidenceForUrl(string securityUrl) { throw null; }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)946         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)947         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
ResolveUri(System.Uri baseUri, string relativeUri)948         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
949     }
950     public partial class XmlSignificantWhitespace : System.Xml.XmlCharacterData
951     {
XmlSignificantWhitespace(string strData, System.Xml.XmlDocument doc)952         protected internal XmlSignificantWhitespace(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
953         public override string LocalName { get { throw null; } }
954         public override string Name { get { throw null; } }
955         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
956         public override System.Xml.XmlNode ParentNode { get { throw null; } }
957         public override System.Xml.XmlNode PreviousText { get { throw null; } }
958         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)959         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)960         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)961         public override void WriteTo(System.Xml.XmlWriter w) { }
962     }
963     public enum XmlSpace
964     {
965         Default = 1,
966         None = 0,
967         Preserve = 2,
968     }
969     public partial class XmlText : System.Xml.XmlCharacterData
970     {
XmlText(string strData, System.Xml.XmlDocument doc)971         protected internal XmlText(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
972         public override string LocalName { get { throw null; } }
973         public override string Name { get { throw null; } }
974         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
975         public override System.Xml.XmlNode ParentNode { get { throw null; } }
976         public override System.Xml.XmlNode PreviousText { get { throw null; } }
977         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)978         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
SplitText(int offset)979         public virtual System.Xml.XmlText SplitText(int offset) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)980         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)981         public override void WriteTo(System.Xml.XmlWriter w) { }
982     }
983     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
984     public partial class XmlTextReader : System.Xml.XmlReader, System.Xml.IXmlLineInfo, System.Xml.IXmlNamespaceResolver
985     {
XmlTextReader()986         protected XmlTextReader() { }
XmlTextReader(System.IO.Stream input)987         public XmlTextReader(System.IO.Stream input) { }
XmlTextReader(System.IO.Stream input, System.Xml.XmlNameTable nt)988         public XmlTextReader(System.IO.Stream input, System.Xml.XmlNameTable nt) { }
XmlTextReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)989         public XmlTextReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlTextReader(System.IO.TextReader input)990         public XmlTextReader(System.IO.TextReader input) { }
XmlTextReader(System.IO.TextReader input, System.Xml.XmlNameTable nt)991         public XmlTextReader(System.IO.TextReader input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url)992         public XmlTextReader(string url) { }
XmlTextReader(string url, System.IO.Stream input)993         public XmlTextReader(string url, System.IO.Stream input) { }
XmlTextReader(string url, System.IO.Stream input, System.Xml.XmlNameTable nt)994         public XmlTextReader(string url, System.IO.Stream input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url, System.IO.TextReader input)995         public XmlTextReader(string url, System.IO.TextReader input) { }
XmlTextReader(string url, System.IO.TextReader input, System.Xml.XmlNameTable nt)996         public XmlTextReader(string url, System.IO.TextReader input, System.Xml.XmlNameTable nt) { }
XmlTextReader(string url, System.Xml.XmlNameTable nt)997         public XmlTextReader(string url, System.Xml.XmlNameTable nt) { }
XmlTextReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)998         public XmlTextReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlTextReader(System.Xml.XmlNameTable nt)999         protected XmlTextReader(System.Xml.XmlNameTable nt) { }
1000         public override int AttributeCount { get { throw null; } }
1001         public override string BaseURI { get { throw null; } }
1002         public override bool CanReadBinaryContent { get { throw null; } }
1003         public override bool CanReadValueChunk { get { throw null; } }
1004         public override bool CanResolveEntity { get { throw null; } }
1005         public override int Depth { get { throw null; } }
1006         public System.Xml.DtdProcessing DtdProcessing { get { throw null; } set { } }
1007         public System.Text.Encoding Encoding { get { throw null; } }
1008         public System.Xml.EntityHandling EntityHandling { get { throw null; } set { } }
1009         public override bool EOF { get { throw null; } }
1010         public override bool HasValue { get { throw null; } }
1011         public override bool IsDefault { get { throw null; } }
1012         public override bool IsEmptyElement { get { throw null; } }
1013         public int LineNumber { get { throw null; } }
1014         public int LinePosition { get { throw null; } }
1015         public override string LocalName { get { throw null; } }
1016         public override string Name { get { throw null; } }
1017         public bool Namespaces { get { throw null; } set { } }
1018         public override string NamespaceURI { get { throw null; } }
1019         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
1020         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1021         public bool Normalization { get { throw null; } set { } }
1022         public override string Prefix { get { throw null; } }
1023         [System.ObsoleteAttribute("Use DtdProcessing property instead.")]
1024         public bool ProhibitDtd { get { throw null; } set { } }
1025         public override char QuoteChar { get { throw null; } }
1026         public override System.Xml.ReadState ReadState { get { throw null; } }
1027         public override string Value { get { throw null; } }
1028         public System.Xml.WhitespaceHandling WhitespaceHandling { get { throw null; } set { } }
1029         public override string XmlLang { get { throw null; } }
1030         public System.Xml.XmlResolver XmlResolver { set { } }
1031         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1032         public override void Close() { }
GetAttribute(int i)1033         public override string GetAttribute(int i) { throw null; }
GetAttribute(string name)1034         public override string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)1035         public override string GetAttribute(string localName, string namespaceURI) { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1036         public System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
GetRemainder()1037         public System.IO.TextReader GetRemainder() { throw null; }
HasLineInfo()1038         public bool HasLineInfo() { throw null; }
LookupNamespace(string prefix)1039         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int i)1040         public override void MoveToAttribute(int i) { }
MoveToAttribute(string name)1041         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string localName, string namespaceURI)1042         public override bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToElement()1043         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()1044         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()1045         public override bool MoveToNextAttribute() { throw null; }
Read()1046         public override bool Read() { throw null; }
ReadAttributeValue()1047         public override bool ReadAttributeValue() { throw null; }
ReadBase64(byte[] array, int offset, int len)1048         public int ReadBase64(byte[] array, int offset, int len) { throw null; }
ReadBinHex(byte[] array, int offset, int len)1049         public int ReadBinHex(byte[] array, int offset, int len) { throw null; }
ReadChars(char[] buffer, int index, int count)1050         public int ReadChars(char[] buffer, int index, int count) { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)1051         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)1052         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)1053         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)1054         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()1055         public override string ReadString() { throw null; }
ResetState()1056         public void ResetState() { }
ResolveEntity()1057         public override void ResolveEntity() { }
Skip()1058         public override void Skip() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1059         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)1060         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)1061         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
1062     }
1063     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1064     public partial class XmlTextWriter : System.Xml.XmlWriter
1065     {
XmlTextWriter(System.IO.Stream w, System.Text.Encoding encoding)1066         public XmlTextWriter(System.IO.Stream w, System.Text.Encoding encoding) { }
XmlTextWriter(System.IO.TextWriter w)1067         public XmlTextWriter(System.IO.TextWriter w) { }
XmlTextWriter(string filename, System.Text.Encoding encoding)1068         public XmlTextWriter(string filename, System.Text.Encoding encoding) { }
1069         public System.IO.Stream BaseStream { get { throw null; } }
1070         public System.Xml.Formatting Formatting { get { throw null; } set { } }
1071         public int Indentation { get { throw null; } set { } }
1072         public char IndentChar { get { throw null; } set { } }
1073         public bool Namespaces { get { throw null; } set { } }
1074         public char QuoteChar { get { throw null; } set { } }
1075         public override System.Xml.WriteState WriteState { get { throw null; } }
1076         public override string XmlLang { get { throw null; } }
1077         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1078         public override void Close() { }
Flush()1079         public override void Flush() { }
LookupPrefix(string ns)1080         public override string LookupPrefix(string ns) { throw null; }
WriteBase64(byte[] buffer, int index, int count)1081         public override void WriteBase64(byte[] buffer, int index, int count) { }
WriteBinHex(byte[] buffer, int index, int count)1082         public override void WriteBinHex(byte[] buffer, int index, int count) { }
WriteCData(string text)1083         public override void WriteCData(string text) { }
WriteCharEntity(char ch)1084         public override void WriteCharEntity(char ch) { }
WriteChars(char[] buffer, int index, int count)1085         public override void WriteChars(char[] buffer, int index, int count) { }
WriteComment(string text)1086         public override void WriteComment(string text) { }
WriteDocType(string name, string pubid, string sysid, string subset)1087         public override void WriteDocType(string name, string pubid, string sysid, string subset) { }
WriteEndAttribute()1088         public override void WriteEndAttribute() { }
WriteEndDocument()1089         public override void WriteEndDocument() { }
WriteEndElement()1090         public override void WriteEndElement() { }
WriteEntityRef(string name)1091         public override void WriteEntityRef(string name) { }
WriteFullEndElement()1092         public override void WriteFullEndElement() { }
WriteName(string name)1093         public override void WriteName(string name) { }
WriteNmToken(string name)1094         public override void WriteNmToken(string name) { }
WriteProcessingInstruction(string name, string text)1095         public override void WriteProcessingInstruction(string name, string text) { }
WriteQualifiedName(string localName, string ns)1096         public override void WriteQualifiedName(string localName, string ns) { }
WriteRaw(char[] buffer, int index, int count)1097         public override void WriteRaw(char[] buffer, int index, int count) { }
WriteRaw(string data)1098         public override void WriteRaw(string data) { }
WriteStartAttribute(string prefix, string localName, string ns)1099         public override void WriteStartAttribute(string prefix, string localName, string ns) { }
WriteStartDocument()1100         public override void WriteStartDocument() { }
WriteStartDocument(bool standalone)1101         public override void WriteStartDocument(bool standalone) { }
WriteStartElement(string prefix, string localName, string ns)1102         public override void WriteStartElement(string prefix, string localName, string ns) { }
WriteString(string text)1103         public override void WriteString(string text) { }
WriteSurrogateCharEntity(char lowChar, char highChar)1104         public override void WriteSurrogateCharEntity(char lowChar, char highChar) { }
WriteWhitespace(string ws)1105         public override void WriteWhitespace(string ws) { }
1106     }
1107     public enum XmlTokenizedType
1108     {
1109         CDATA = 0,
1110         ENTITIES = 5,
1111         ENTITY = 4,
1112         ENUMERATION = 9,
1113         ID = 1,
1114         IDREF = 2,
1115         IDREFS = 3,
1116         NCName = 11,
1117         NMTOKEN = 6,
1118         NMTOKENS = 7,
1119         None = 12,
1120         NOTATION = 8,
1121         QName = 10,
1122     }
1123     public partial class XmlUrlResolver : System.Xml.XmlResolver
1124     {
XmlUrlResolver()1125         public XmlUrlResolver() { }
1126         public System.Net.Cache.RequestCachePolicy CachePolicy { set { } }
1127         public override System.Net.ICredentials Credentials { set { } }
1128         public System.Net.IWebProxy Proxy { set { } }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1129         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1130         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
ResolveUri(System.Uri baseUri, string relativeUri)1131         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
1132     }
1133     [System.ObsoleteAttribute("Use XmlReader created by XmlReader.Create() method using appropriate XmlReaderSettings instead. http://go.microsoft.com/fwlink/?linkid=14202")]
1134     public partial class XmlValidatingReader : System.Xml.XmlReader, System.Xml.IXmlLineInfo, System.Xml.IXmlNamespaceResolver
1135     {
XmlValidatingReader(System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context)1136         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)1137         public XmlValidatingReader(string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context) { }
XmlValidatingReader(System.Xml.XmlReader reader)1138         public XmlValidatingReader(System.Xml.XmlReader reader) { }
1139         public override int AttributeCount { get { throw null; } }
1140         public override string BaseURI { get { throw null; } }
1141         public override bool CanReadBinaryContent { get { throw null; } }
1142         public override bool CanResolveEntity { get { throw null; } }
1143         public override int Depth { get { throw null; } }
1144         public System.Text.Encoding Encoding { get { throw null; } }
1145         public System.Xml.EntityHandling EntityHandling { get { throw null; } set { } }
1146         public override bool EOF { get { throw null; } }
1147         public override bool HasValue { get { throw null; } }
1148         public override bool IsDefault { get { throw null; } }
1149         public override bool IsEmptyElement { get { throw null; } }
1150         public int LineNumber { get { throw null; } }
1151         public int LinePosition { get { throw null; } }
1152         public override string LocalName { get { throw null; } }
1153         public override string Name { get { throw null; } }
1154         public bool Namespaces { get { throw null; } set { } }
1155         public override string NamespaceURI { get { throw null; } }
1156         public override System.Xml.XmlNameTable NameTable { get { throw null; } }
1157         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1158         public override string Prefix { get { throw null; } }
1159         public override char QuoteChar { get { throw null; } }
1160         public System.Xml.XmlReader Reader { get { throw null; } }
1161         public override System.Xml.ReadState ReadState { get { throw null; } }
1162         public System.Xml.Schema.XmlSchemaCollection Schemas { get { throw null; } }
1163         public object SchemaType { get { throw null; } }
1164         public System.Xml.ValidationType ValidationType { get { throw null; } set { } }
1165         public override string Value { get { throw null; } }
1166         public override string XmlLang { get { throw null; } }
1167         public System.Xml.XmlResolver XmlResolver { set { } }
1168         public override System.Xml.XmlSpace XmlSpace { get { throw null; } }
1169         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Close()1170         public override void Close() { }
GetAttribute(int i)1171         public override string GetAttribute(int i) { throw null; }
GetAttribute(string name)1172         public override string GetAttribute(string name) { throw null; }
GetAttribute(string localName, string namespaceURI)1173         public override string GetAttribute(string localName, string namespaceURI) { throw null; }
HasLineInfo()1174         public bool HasLineInfo() { throw null; }
LookupNamespace(string prefix)1175         public override string LookupNamespace(string prefix) { throw null; }
MoveToAttribute(int i)1176         public override void MoveToAttribute(int i) { }
MoveToAttribute(string name)1177         public override bool MoveToAttribute(string name) { throw null; }
MoveToAttribute(string localName, string namespaceURI)1178         public override bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToElement()1179         public override bool MoveToElement() { throw null; }
MoveToFirstAttribute()1180         public override bool MoveToFirstAttribute() { throw null; }
MoveToNextAttribute()1181         public override bool MoveToNextAttribute() { throw null; }
Read()1182         public override bool Read() { throw null; }
ReadAttributeValue()1183         public override bool ReadAttributeValue() { throw null; }
ReadContentAsBase64(byte[] buffer, int index, int count)1184         public override int ReadContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadContentAsBinHex(byte[] buffer, int index, int count)1185         public override int ReadContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBase64(byte[] buffer, int index, int count)1186         public override int ReadElementContentAsBase64(byte[] buffer, int index, int count) { throw null; }
ReadElementContentAsBinHex(byte[] buffer, int index, int count)1187         public override int ReadElementContentAsBinHex(byte[] buffer, int index, int count) { throw null; }
ReadString()1188         public override string ReadString() { throw null; }
ReadTypedValue()1189         public object ReadTypedValue() { throw null; }
ResolveEntity()1190         public override void ResolveEntity() { }
System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)1191         System.Collections.Generic.IDictionary<string, string> System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix)1192         string System.Xml.IXmlNamespaceResolver.LookupNamespace(string prefix) { throw null; }
System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName)1193         string System.Xml.IXmlNamespaceResolver.LookupPrefix(string namespaceName) { throw null; }
1194     }
1195     public partial class XmlWhitespace : System.Xml.XmlCharacterData
1196     {
XmlWhitespace(string strData, System.Xml.XmlDocument doc)1197         protected internal XmlWhitespace(string strData, System.Xml.XmlDocument doc) : base (default(string), default(System.Xml.XmlDocument)) { }
1198         public override string LocalName { get { throw null; } }
1199         public override string Name { get { throw null; } }
1200         public override System.Xml.XmlNodeType NodeType { get { throw null; } }
1201         public override System.Xml.XmlNode ParentNode { get { throw null; } }
1202         public override System.Xml.XmlNode PreviousText { get { throw null; } }
1203         public override string Value { get { throw null; } set { } }
CloneNode(bool deep)1204         public override System.Xml.XmlNode CloneNode(bool deep) { throw null; }
WriteContentTo(System.Xml.XmlWriter w)1205         public override void WriteContentTo(System.Xml.XmlWriter w) { }
WriteTo(System.Xml.XmlWriter w)1206         public override void WriteTo(System.Xml.XmlWriter w) { }
1207     }
1208     public abstract partial class XmlWriter : System.IDisposable
1209     {
XmlWriter()1210         protected XmlWriter() { }
1211         public virtual System.Xml.XmlWriterSettings Settings { get { throw null; } }
1212         public abstract System.Xml.WriteState WriteState { get; }
1213         public virtual string XmlLang { get { throw null; } }
1214         public virtual System.Xml.XmlSpace XmlSpace { get { throw null; } }
Close()1215         public virtual void Close() { }
Create(System.IO.Stream output)1216         public static System.Xml.XmlWriter Create(System.IO.Stream output) { throw null; }
Create(System.IO.Stream output, System.Xml.XmlWriterSettings settings)1217         public static System.Xml.XmlWriter Create(System.IO.Stream output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.IO.TextWriter output)1218         public static System.Xml.XmlWriter Create(System.IO.TextWriter output) { throw null; }
Create(System.IO.TextWriter output, System.Xml.XmlWriterSettings settings)1219         public static System.Xml.XmlWriter Create(System.IO.TextWriter output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(string outputFileName)1220         public static System.Xml.XmlWriter Create(string outputFileName) { throw null; }
Create(string outputFileName, System.Xml.XmlWriterSettings settings)1221         public static System.Xml.XmlWriter Create(string outputFileName, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.Text.StringBuilder output)1222         public static System.Xml.XmlWriter Create(System.Text.StringBuilder output) { throw null; }
Create(System.Text.StringBuilder output, System.Xml.XmlWriterSettings settings)1223         public static System.Xml.XmlWriter Create(System.Text.StringBuilder output, System.Xml.XmlWriterSettings settings) { throw null; }
Create(System.Xml.XmlWriter output)1224         public static System.Xml.XmlWriter Create(System.Xml.XmlWriter output) { throw null; }
Create(System.Xml.XmlWriter output, System.Xml.XmlWriterSettings settings)1225         public static System.Xml.XmlWriter Create(System.Xml.XmlWriter output, System.Xml.XmlWriterSettings settings) { throw null; }
Dispose()1226         public void Dispose() { }
Dispose(bool disposing)1227         protected virtual void Dispose(bool disposing) { }
Flush()1228         public abstract void Flush();
FlushAsync()1229         public virtual System.Threading.Tasks.Task FlushAsync() { throw null; }
LookupPrefix(string ns)1230         public abstract string LookupPrefix(string ns);
WriteAttributes(System.Xml.XmlReader reader, bool defattr)1231         public virtual void WriteAttributes(System.Xml.XmlReader reader, bool defattr) { }
1232         [System.Diagnostics.DebuggerStepThroughAttribute]
WriteAttributesAsync(System.Xml.XmlReader reader, bool defattr)1233         public virtual System.Threading.Tasks.Task WriteAttributesAsync(System.Xml.XmlReader reader, bool defattr) { throw null; }
WriteAttributeString(string localName, string value)1234         public void WriteAttributeString(string localName, string value) { }
WriteAttributeString(string localName, string ns, string value)1235         public void WriteAttributeString(string localName, string ns, string value) { }
WriteAttributeString(string prefix, string localName, string ns, string value)1236         public void WriteAttributeString(string prefix, string localName, string ns, string value) { }
WriteAttributeStringAsync(string prefix, string localName, string ns, string value)1237         public System.Threading.Tasks.Task WriteAttributeStringAsync(string prefix, string localName, string ns, string value) { throw null; }
WriteBase64(byte[] buffer, int index, int count)1238         public abstract void WriteBase64(byte[] buffer, int index, int count);
WriteBase64Async(byte[] buffer, int index, int count)1239         public virtual System.Threading.Tasks.Task WriteBase64Async(byte[] buffer, int index, int count) { throw null; }
WriteBinHex(byte[] buffer, int index, int count)1240         public virtual void WriteBinHex(byte[] buffer, int index, int count) { }
WriteBinHexAsync(byte[] buffer, int index, int count)1241         public virtual System.Threading.Tasks.Task WriteBinHexAsync(byte[] buffer, int index, int count) { throw null; }
WriteCData(string text)1242         public abstract void WriteCData(string text);
WriteCDataAsync(string text)1243         public virtual System.Threading.Tasks.Task WriteCDataAsync(string text) { throw null; }
WriteCharEntity(char ch)1244         public abstract void WriteCharEntity(char ch);
WriteCharEntityAsync(char ch)1245         public virtual System.Threading.Tasks.Task WriteCharEntityAsync(char ch) { throw null; }
WriteChars(char[] buffer, int index, int count)1246         public abstract void WriteChars(char[] buffer, int index, int count);
WriteCharsAsync(char[] buffer, int index, int count)1247         public virtual System.Threading.Tasks.Task WriteCharsAsync(char[] buffer, int index, int count) { throw null; }
WriteComment(string text)1248         public abstract void WriteComment(string text);
WriteCommentAsync(string text)1249         public virtual System.Threading.Tasks.Task WriteCommentAsync(string text) { throw null; }
WriteDocType(string name, string pubid, string sysid, string subset)1250         public abstract void WriteDocType(string name, string pubid, string sysid, string subset);
WriteDocTypeAsync(string name, string pubid, string sysid, string subset)1251         public virtual System.Threading.Tasks.Task WriteDocTypeAsync(string name, string pubid, string sysid, string subset) { throw null; }
WriteElementString(string localName, string value)1252         public void WriteElementString(string localName, string value) { }
WriteElementString(string localName, string ns, string value)1253         public void WriteElementString(string localName, string ns, string value) { }
WriteElementString(string prefix, string localName, string ns, string value)1254         public void WriteElementString(string prefix, string localName, string ns, string value) { }
1255         [System.Diagnostics.DebuggerStepThroughAttribute]
WriteElementStringAsync(string prefix, string localName, string ns, string value)1256         public System.Threading.Tasks.Task WriteElementStringAsync(string prefix, string localName, string ns, string value) { throw null; }
WriteEndAttribute()1257         public abstract void WriteEndAttribute();
WriteEndAttributeAsync()1258         protected internal virtual System.Threading.Tasks.Task WriteEndAttributeAsync() { throw null; }
WriteEndDocument()1259         public abstract void WriteEndDocument();
WriteEndDocumentAsync()1260         public virtual System.Threading.Tasks.Task WriteEndDocumentAsync() { throw null; }
WriteEndElement()1261         public abstract void WriteEndElement();
WriteEndElementAsync()1262         public virtual System.Threading.Tasks.Task WriteEndElementAsync() { throw null; }
WriteEntityRef(string name)1263         public abstract void WriteEntityRef(string name);
WriteEntityRefAsync(string name)1264         public virtual System.Threading.Tasks.Task WriteEntityRefAsync(string name) { throw null; }
WriteFullEndElement()1265         public abstract void WriteFullEndElement();
WriteFullEndElementAsync()1266         public virtual System.Threading.Tasks.Task WriteFullEndElementAsync() { throw null; }
WriteName(string name)1267         public virtual void WriteName(string name) { }
WriteNameAsync(string name)1268         public virtual System.Threading.Tasks.Task WriteNameAsync(string name) { throw null; }
WriteNmToken(string name)1269         public virtual void WriteNmToken(string name) { }
WriteNmTokenAsync(string name)1270         public virtual System.Threading.Tasks.Task WriteNmTokenAsync(string name) { throw null; }
WriteNode(System.Xml.XmlReader reader, bool defattr)1271         public virtual void WriteNode(System.Xml.XmlReader reader, bool defattr) { }
WriteNode(System.Xml.XPath.XPathNavigator navigator, bool defattr)1272         public virtual void WriteNode(System.Xml.XPath.XPathNavigator navigator, bool defattr) { }
WriteNodeAsync(System.Xml.XmlReader reader, bool defattr)1273         public virtual System.Threading.Tasks.Task WriteNodeAsync(System.Xml.XmlReader reader, bool defattr) { throw null; }
1274         [System.Diagnostics.DebuggerStepThroughAttribute]
WriteNodeAsync(System.Xml.XPath.XPathNavigator navigator, bool defattr)1275         public virtual System.Threading.Tasks.Task WriteNodeAsync(System.Xml.XPath.XPathNavigator navigator, bool defattr) { throw null; }
WriteProcessingInstruction(string name, string text)1276         public abstract void WriteProcessingInstruction(string name, string text);
WriteProcessingInstructionAsync(string name, string text)1277         public virtual System.Threading.Tasks.Task WriteProcessingInstructionAsync(string name, string text) { throw null; }
WriteQualifiedName(string localName, string ns)1278         public virtual void WriteQualifiedName(string localName, string ns) { }
1279         [System.Diagnostics.DebuggerStepThroughAttribute]
WriteQualifiedNameAsync(string localName, string ns)1280         public virtual System.Threading.Tasks.Task WriteQualifiedNameAsync(string localName, string ns) { throw null; }
WriteRaw(char[] buffer, int index, int count)1281         public abstract void WriteRaw(char[] buffer, int index, int count);
WriteRaw(string data)1282         public abstract void WriteRaw(string data);
WriteRawAsync(char[] buffer, int index, int count)1283         public virtual System.Threading.Tasks.Task WriteRawAsync(char[] buffer, int index, int count) { throw null; }
WriteRawAsync(string data)1284         public virtual System.Threading.Tasks.Task WriteRawAsync(string data) { throw null; }
WriteStartAttribute(string localName)1285         public void WriteStartAttribute(string localName) { }
WriteStartAttribute(string localName, string ns)1286         public void WriteStartAttribute(string localName, string ns) { }
WriteStartAttribute(string prefix, string localName, string ns)1287         public abstract void WriteStartAttribute(string prefix, string localName, string ns);
WriteStartAttributeAsync(string prefix, string localName, string ns)1288         protected internal virtual System.Threading.Tasks.Task WriteStartAttributeAsync(string prefix, string localName, string ns) { throw null; }
WriteStartDocument()1289         public abstract void WriteStartDocument();
WriteStartDocument(bool standalone)1290         public abstract void WriteStartDocument(bool standalone);
WriteStartDocumentAsync()1291         public virtual System.Threading.Tasks.Task WriteStartDocumentAsync() { throw null; }
WriteStartDocumentAsync(bool standalone)1292         public virtual System.Threading.Tasks.Task WriteStartDocumentAsync(bool standalone) { throw null; }
WriteStartElement(string localName)1293         public void WriteStartElement(string localName) { }
WriteStartElement(string localName, string ns)1294         public void WriteStartElement(string localName, string ns) { }
WriteStartElement(string prefix, string localName, string ns)1295         public abstract void WriteStartElement(string prefix, string localName, string ns);
WriteStartElementAsync(string prefix, string localName, string ns)1296         public virtual System.Threading.Tasks.Task WriteStartElementAsync(string prefix, string localName, string ns) { throw null; }
WriteString(string text)1297         public abstract void WriteString(string text);
WriteStringAsync(string text)1298         public virtual System.Threading.Tasks.Task WriteStringAsync(string text) { throw null; }
WriteSurrogateCharEntity(char lowChar, char highChar)1299         public abstract void WriteSurrogateCharEntity(char lowChar, char highChar);
WriteSurrogateCharEntityAsync(char lowChar, char highChar)1300         public virtual System.Threading.Tasks.Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) { throw null; }
WriteValue(bool value)1301         public virtual void WriteValue(bool value) { }
WriteValue(System.DateTime value)1302         public virtual void WriteValue(System.DateTime value) { }
WriteValue(System.DateTimeOffset value)1303         public virtual void WriteValue(System.DateTimeOffset value) { }
WriteValue(decimal value)1304         public virtual void WriteValue(decimal value) { }
WriteValue(double value)1305         public virtual void WriteValue(double value) { }
WriteValue(int value)1306         public virtual void WriteValue(int value) { }
WriteValue(long value)1307         public virtual void WriteValue(long value) { }
WriteValue(object value)1308         public virtual void WriteValue(object value) { }
WriteValue(float value)1309         public virtual void WriteValue(float value) { }
WriteValue(string value)1310         public virtual void WriteValue(string value) { }
WriteWhitespace(string ws)1311         public abstract void WriteWhitespace(string ws);
WriteWhitespaceAsync(string ws)1312         public virtual System.Threading.Tasks.Task WriteWhitespaceAsync(string ws) { throw null; }
1313     }
1314     public sealed partial class XmlWriterSettings
1315     {
XmlWriterSettings()1316         public XmlWriterSettings() { }
1317         public bool Async { get { throw null; } set { } }
1318         public bool CheckCharacters { get { throw null; } set { } }
1319         public bool CloseOutput { get { throw null; } set { } }
1320         public System.Xml.ConformanceLevel ConformanceLevel { get { throw null; } set { } }
1321         public bool DoNotEscapeUriAttributes { get { throw null; } set { } }
1322         public System.Text.Encoding Encoding { get { throw null; } set { } }
1323         public bool Indent { get { throw null; } set { } }
1324         public string IndentChars { get { throw null; } set { } }
1325         public System.Xml.NamespaceHandling NamespaceHandling { get { throw null; } set { } }
1326         public string NewLineChars { get { throw null; } set { } }
1327         public System.Xml.NewLineHandling NewLineHandling { get { throw null; } set { } }
1328         public bool NewLineOnAttributes { get { throw null; } set { } }
1329         public bool OmitXmlDeclaration { get { throw null; } set { } }
1330         public System.Xml.XmlOutputMethod OutputMethod { get { throw null; } }
1331         public bool WriteEndDocumentOnClose { get { throw null; } set { } }
Clone()1332         public System.Xml.XmlWriterSettings Clone() { throw null; }
Reset()1333         public void Reset() { }
1334     }
1335 }
1336 namespace System.Xml.Resolvers
1337 {
1338     [System.FlagsAttribute]
1339     public enum XmlKnownDtds
1340     {
1341         All = 65535,
1342         None = 0,
1343         Rss091 = 2,
1344         Xhtml10 = 1,
1345     }
1346     public partial class XmlPreloadedResolver : System.Xml.XmlResolver
1347     {
XmlPreloadedResolver()1348         public XmlPreloadedResolver() { }
XmlPreloadedResolver(System.Xml.Resolvers.XmlKnownDtds preloadedDtds)1349         public XmlPreloadedResolver(System.Xml.Resolvers.XmlKnownDtds preloadedDtds) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver)1350         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds)1351         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds) { }
XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds, System.Collections.Generic.IEqualityComparer<System.Uri> uriComparer)1352         public XmlPreloadedResolver(System.Xml.XmlResolver fallbackResolver, System.Xml.Resolvers.XmlKnownDtds preloadedDtds, System.Collections.Generic.IEqualityComparer<System.Uri> uriComparer) { }
1353         public override System.Net.ICredentials Credentials { set { } }
1354         public System.Collections.Generic.IEnumerable<System.Uri> PreloadedUris { get { throw null; } }
Add(System.Uri uri, byte[] value)1355         public void Add(System.Uri uri, byte[] value) { }
Add(System.Uri uri, byte[] value, int offset, int count)1356         public void Add(System.Uri uri, byte[] value, int offset, int count) { }
Add(System.Uri uri, System.IO.Stream value)1357         public void Add(System.Uri uri, System.IO.Stream value) { }
Add(System.Uri uri, string value)1358         public void Add(System.Uri uri, string value) { }
GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1359         public override object GetEntity(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn)1360         public override System.Threading.Tasks.Task<object> GetEntityAsync(System.Uri absoluteUri, string role, System.Type ofObjectToReturn) { throw null; }
Remove(System.Uri uri)1361         public void Remove(System.Uri uri) { }
ResolveUri(System.Uri baseUri, string relativeUri)1362         public override System.Uri ResolveUri(System.Uri baseUri, string relativeUri) { throw null; }
SupportsType(System.Uri absoluteUri, System.Type type)1363         public override bool SupportsType(System.Uri absoluteUri, System.Type type) { throw null; }
1364     }
1365 }
1366 namespace System.Xml.Schema
1367 {
1368     public partial interface IXmlSchemaInfo
1369     {
1370         bool IsDefault { get; }
1371         bool IsNil { get; }
1372         System.Xml.Schema.XmlSchemaSimpleType MemberType { get; }
1373         System.Xml.Schema.XmlSchemaAttribute SchemaAttribute { get; }
1374         System.Xml.Schema.XmlSchemaElement SchemaElement { get; }
1375         System.Xml.Schema.XmlSchemaType SchemaType { get; }
1376         System.Xml.Schema.XmlSchemaValidity Validity { get; }
1377     }
1378     public partial class ValidationEventArgs : System.EventArgs
1379     {
ValidationEventArgs()1380         internal ValidationEventArgs() { }
1381         public System.Xml.Schema.XmlSchemaException Exception { get { throw null; } }
1382         public string Message { get { throw null; } }
1383         public System.Xml.Schema.XmlSeverityType Severity { get { throw null; } }
1384     }
ValidationEventHandler(object sender, System.Xml.Schema.ValidationEventArgs e)1385     public delegate void ValidationEventHandler(object sender, System.Xml.Schema.ValidationEventArgs e);
1386     public sealed partial class XmlAtomicValue : System.Xml.XPath.XPathItem, System.ICloneable
1387     {
XmlAtomicValue()1388         internal XmlAtomicValue() { }
1389         public override bool IsNode { get { throw null; } }
1390         public override object TypedValue { get { throw null; } }
1391         public override string Value { get { throw null; } }
1392         public override bool ValueAsBoolean { get { throw null; } }
1393         public override System.DateTime ValueAsDateTime { get { throw null; } }
1394         public override double ValueAsDouble { get { throw null; } }
1395         public override int ValueAsInt { get { throw null; } }
1396         public override long ValueAsLong { get { throw null; } }
1397         public override System.Type ValueType { get { throw null; } }
1398         public override System.Xml.Schema.XmlSchemaType XmlType { get { throw null; } }
Clone()1399         public System.Xml.Schema.XmlAtomicValue Clone() { throw null; }
System.ICloneable.Clone()1400         object System.ICloneable.Clone() { throw null; }
ToString()1401         public override string ToString() { throw null; }
ValueAs(System.Type type, System.Xml.IXmlNamespaceResolver nsResolver)1402         public override object ValueAs(System.Type type, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
1403     }
1404     [System.Xml.Serialization.XmlRootAttribute("schema", Namespace="http://www.w3.org/2001/XMLSchema")]
1405     public partial class XmlSchema : System.Xml.Schema.XmlSchemaObject
1406     {
1407         public const string InstanceNamespace = "http://www.w3.org/2001/XMLSchema-instance";
1408         public const string Namespace = "http://www.w3.org/2001/XMLSchema";
XmlSchema()1409         public XmlSchema() { }
1410         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1411         [System.Xml.Serialization.XmlAttributeAttribute("attributeFormDefault")]
1412         public System.Xml.Schema.XmlSchemaForm AttributeFormDefault { get { throw null; } set { } }
1413         [System.Xml.Serialization.XmlIgnoreAttribute]
1414         public System.Xml.Schema.XmlSchemaObjectTable AttributeGroups { get { throw null; } }
1415         [System.Xml.Serialization.XmlIgnoreAttribute]
1416         public System.Xml.Schema.XmlSchemaObjectTable Attributes { get { throw null; } }
1417         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1418         [System.Xml.Serialization.XmlAttributeAttribute("blockDefault")]
1419         public System.Xml.Schema.XmlSchemaDerivationMethod BlockDefault { get { throw null; } set { } }
1420         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1421         [System.Xml.Serialization.XmlAttributeAttribute("elementFormDefault")]
1422         public System.Xml.Schema.XmlSchemaForm ElementFormDefault { get { throw null; } set { } }
1423         [System.Xml.Serialization.XmlIgnoreAttribute]
1424         public System.Xml.Schema.XmlSchemaObjectTable Elements { get { throw null; } }
1425         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1426         [System.Xml.Serialization.XmlAttributeAttribute("finalDefault")]
1427         public System.Xml.Schema.XmlSchemaDerivationMethod FinalDefault { get { throw null; } set { } }
1428         [System.Xml.Serialization.XmlIgnoreAttribute]
1429         public System.Xml.Schema.XmlSchemaObjectTable Groups { get { throw null; } }
1430         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1431         public string Id { get { throw null; } set { } }
1432         [System.Xml.Serialization.XmlElementAttribute("import", typeof(System.Xml.Schema.XmlSchemaImport))]
1433         [System.Xml.Serialization.XmlElementAttribute("include", typeof(System.Xml.Schema.XmlSchemaInclude))]
1434         [System.Xml.Serialization.XmlElementAttribute("redefine", typeof(System.Xml.Schema.XmlSchemaRedefine))]
1435         public System.Xml.Schema.XmlSchemaObjectCollection Includes { get { throw null; } }
1436         [System.Xml.Serialization.XmlIgnoreAttribute]
1437         public bool IsCompiled { get { throw null; } }
1438         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1439         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1440         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroup))]
1441         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
1442         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1443         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroup))]
1444         [System.Xml.Serialization.XmlElementAttribute("notation", typeof(System.Xml.Schema.XmlSchemaNotation))]
1445         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
1446         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1447         [System.Xml.Serialization.XmlIgnoreAttribute]
1448         public System.Xml.Schema.XmlSchemaObjectTable Notations { get { throw null; } }
1449         [System.Xml.Serialization.XmlIgnoreAttribute]
1450         public System.Xml.Schema.XmlSchemaObjectTable SchemaTypes { get { throw null; } }
1451         [System.Xml.Serialization.XmlAttributeAttribute("targetNamespace", DataType="anyURI")]
1452         public string TargetNamespace { get { throw null; } set { } }
1453         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1454         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1455         [System.Xml.Serialization.XmlAttributeAttribute("version", DataType="token")]
1456         public string Version { get { throw null; } set { } }
1457         [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler)1458         public void Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler) { }
1459         [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlResolver resolver)1460         public void Compile(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlResolver resolver) { }
Read(System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler validationEventHandler)1461         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)1462         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)1463         public static System.Xml.Schema.XmlSchema Read(System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Write(System.IO.Stream stream)1464         public void Write(System.IO.Stream stream) { }
Write(System.IO.Stream stream, System.Xml.XmlNamespaceManager namespaceManager)1465         public void Write(System.IO.Stream stream, System.Xml.XmlNamespaceManager namespaceManager) { }
Write(System.IO.TextWriter writer)1466         public void Write(System.IO.TextWriter writer) { }
Write(System.IO.TextWriter writer, System.Xml.XmlNamespaceManager namespaceManager)1467         public void Write(System.IO.TextWriter writer, System.Xml.XmlNamespaceManager namespaceManager) { }
Write(System.Xml.XmlWriter writer)1468         public void Write(System.Xml.XmlWriter writer) { }
Write(System.Xml.XmlWriter writer, System.Xml.XmlNamespaceManager namespaceManager)1469         public void Write(System.Xml.XmlWriter writer, System.Xml.XmlNamespaceManager namespaceManager) { }
1470     }
1471     public partial class XmlSchemaAll : System.Xml.Schema.XmlSchemaGroupBase
1472     {
XmlSchemaAll()1473         public XmlSchemaAll() { }
1474         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1475         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1476     }
1477     public partial class XmlSchemaAnnotated : System.Xml.Schema.XmlSchemaObject
1478     {
XmlSchemaAnnotated()1479         public XmlSchemaAnnotated() { }
1480         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1481         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1482         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1483         public string Id { get { throw null; } set { } }
1484         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1485         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1486     }
1487     public partial class XmlSchemaAnnotation : System.Xml.Schema.XmlSchemaObject
1488     {
XmlSchemaAnnotation()1489         public XmlSchemaAnnotation() { }
1490         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1491         public string Id { get { throw null; } set { } }
1492         [System.Xml.Serialization.XmlElementAttribute("appinfo", typeof(System.Xml.Schema.XmlSchemaAppInfo))]
1493         [System.Xml.Serialization.XmlElementAttribute("documentation", typeof(System.Xml.Schema.XmlSchemaDocumentation))]
1494         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1495         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1496         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1497     }
1498     public partial class XmlSchemaAny : System.Xml.Schema.XmlSchemaParticle
1499     {
XmlSchemaAny()1500         public XmlSchemaAny() { }
1501         [System.Xml.Serialization.XmlAttributeAttribute("namespace")]
1502         public string Namespace { get { throw null; } set { } }
1503         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaContentProcessing)(0))]
1504         [System.Xml.Serialization.XmlAttributeAttribute("processContents")]
1505         public System.Xml.Schema.XmlSchemaContentProcessing ProcessContents { get { throw null; } set { } }
1506     }
1507     public partial class XmlSchemaAnyAttribute : System.Xml.Schema.XmlSchemaAnnotated
1508     {
XmlSchemaAnyAttribute()1509         public XmlSchemaAnyAttribute() { }
1510         [System.Xml.Serialization.XmlAttributeAttribute("namespace")]
1511         public string Namespace { get { throw null; } set { } }
1512         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaContentProcessing)(0))]
1513         [System.Xml.Serialization.XmlAttributeAttribute("processContents")]
1514         public System.Xml.Schema.XmlSchemaContentProcessing ProcessContents { get { throw null; } set { } }
1515     }
1516     public partial class XmlSchemaAppInfo : System.Xml.Schema.XmlSchemaObject
1517     {
XmlSchemaAppInfo()1518         public XmlSchemaAppInfo() { }
1519         [System.Xml.Serialization.XmlAnyElementAttribute]
1520         [System.Xml.Serialization.XmlTextAttribute]
1521         public System.Xml.XmlNode[] Markup { get { throw null; } set { } }
1522         [System.Xml.Serialization.XmlAttributeAttribute("source", DataType="anyURI")]
1523         public string Source { get { throw null; } set { } }
1524     }
1525     public partial class XmlSchemaAttribute : System.Xml.Schema.XmlSchemaAnnotated
1526     {
XmlSchemaAttribute()1527         public XmlSchemaAttribute() { }
1528         [System.Xml.Serialization.XmlIgnoreAttribute]
1529         public System.Xml.Schema.XmlSchemaSimpleType AttributeSchemaType { get { throw null; } }
1530         [System.ObsoleteAttribute("This property has been deprecated. Please use AttributeSchemaType property that returns a strongly typed attribute type. http://go.microsoft.com/fwlink/?linkid=14202")]
1531         [System.Xml.Serialization.XmlIgnoreAttribute]
1532         public object AttributeType { get { throw null; } }
1533         [System.ComponentModel.DefaultValueAttribute(null)]
1534         [System.Xml.Serialization.XmlAttributeAttribute("default")]
1535         public string DefaultValue { get { throw null; } set { } }
1536         [System.ComponentModel.DefaultValueAttribute(null)]
1537         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1538         public string FixedValue { get { throw null; } set { } }
1539         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1540         [System.Xml.Serialization.XmlAttributeAttribute("form")]
1541         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
1542         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1543         public string Name { get { throw null; } set { } }
1544         [System.Xml.Serialization.XmlIgnoreAttribute]
1545         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1546         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1547         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1548         [System.Xml.Serialization.XmlElementAttribute("simpleType")]
1549         public System.Xml.Schema.XmlSchemaSimpleType SchemaType { get { throw null; } set { } }
1550         [System.Xml.Serialization.XmlAttributeAttribute("type")]
1551         public System.Xml.XmlQualifiedName SchemaTypeName { get { throw null; } set { } }
1552         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaUse)(0))]
1553         [System.Xml.Serialization.XmlAttributeAttribute("use")]
1554         public System.Xml.Schema.XmlSchemaUse Use { get { throw null; } set { } }
1555     }
1556     public partial class XmlSchemaAttributeGroup : System.Xml.Schema.XmlSchemaAnnotated
1557     {
XmlSchemaAttributeGroup()1558         public XmlSchemaAttributeGroup() { }
1559         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1560         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1561         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1562         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1563         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1564         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1565         public string Name { get { throw null; } set { } }
1566         [System.Xml.Serialization.XmlIgnoreAttribute]
1567         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1568         [System.Xml.Serialization.XmlIgnoreAttribute]
1569         public System.Xml.Schema.XmlSchemaAttributeGroup RedefinedAttributeGroup { get { throw null; } }
1570     }
1571     public partial class XmlSchemaAttributeGroupRef : System.Xml.Schema.XmlSchemaAnnotated
1572     {
XmlSchemaAttributeGroupRef()1573         public XmlSchemaAttributeGroupRef() { }
1574         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1575         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1576     }
1577     public partial class XmlSchemaChoice : System.Xml.Schema.XmlSchemaGroupBase
1578     {
XmlSchemaChoice()1579         public XmlSchemaChoice() { }
1580         [System.Xml.Serialization.XmlElementAttribute("any", typeof(System.Xml.Schema.XmlSchemaAny))]
1581         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1582         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
1583         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1584         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1585         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
1586     }
1587     [System.ObsoleteAttribute("Use System.Xml.Schema.XmlSchemaSet for schema compilation and validation. http://go.microsoft.com/fwlink/?linkid=14202")]
1588     public sealed partial class XmlSchemaCollection : System.Collections.ICollection, System.Collections.IEnumerable
1589     {
XmlSchemaCollection()1590         public XmlSchemaCollection() { }
XmlSchemaCollection(System.Xml.XmlNameTable nametable)1591         public XmlSchemaCollection(System.Xml.XmlNameTable nametable) { }
1592         public int Count { get { throw null; } }
1593         public System.Xml.Schema.XmlSchema this[string ns] { get { throw null; } }
1594         public System.Xml.XmlNameTable NameTable { get { throw null; } }
1595         int System.Collections.ICollection.Count { get { throw null; } }
1596         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
1597         object System.Collections.ICollection.SyncRoot { get { throw null; } }
1598         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Add(string ns, string uri)1599         public System.Xml.Schema.XmlSchema Add(string ns, string uri) { throw null; }
Add(string ns, System.Xml.XmlReader reader)1600         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)1601         public System.Xml.Schema.XmlSchema Add(string ns, System.Xml.XmlReader reader, System.Xml.XmlResolver resolver) { throw null; }
Add(System.Xml.Schema.XmlSchema schema)1602         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema) { throw null; }
Add(System.Xml.Schema.XmlSchema schema, System.Xml.XmlResolver resolver)1603         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema, System.Xml.XmlResolver resolver) { throw null; }
Add(System.Xml.Schema.XmlSchemaCollection schema)1604         public void Add(System.Xml.Schema.XmlSchemaCollection schema) { }
Contains(string ns)1605         public bool Contains(string ns) { throw null; }
Contains(System.Xml.Schema.XmlSchema schema)1606         public bool Contains(System.Xml.Schema.XmlSchema schema) { throw null; }
CopyTo(System.Xml.Schema.XmlSchema[] array, int index)1607         public void CopyTo(System.Xml.Schema.XmlSchema[] array, int index) { }
GetEnumerator()1608         public System.Xml.Schema.XmlSchemaCollectionEnumerator GetEnumerator() { throw null; }
System.Collections.ICollection.CopyTo(System.Array array, int index)1609         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
System.Collections.IEnumerable.GetEnumerator()1610         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
1611     }
1612     public sealed partial class XmlSchemaCollectionEnumerator : System.Collections.IEnumerator
1613     {
XmlSchemaCollectionEnumerator()1614         internal XmlSchemaCollectionEnumerator() { }
1615         public System.Xml.Schema.XmlSchema Current { get { throw null; } }
1616         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()1617         public bool MoveNext() { throw null; }
System.Collections.IEnumerator.MoveNext()1618         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()1619         void System.Collections.IEnumerator.Reset() { }
1620     }
1621     public sealed partial class XmlSchemaCompilationSettings
1622     {
XmlSchemaCompilationSettings()1623         public XmlSchemaCompilationSettings() { }
1624         public bool EnableUpaCheck { get { throw null; } set { } }
1625     }
1626     public partial class XmlSchemaComplexContent : System.Xml.Schema.XmlSchemaContentModel
1627     {
XmlSchemaComplexContent()1628         public XmlSchemaComplexContent() { }
1629         [System.Xml.Serialization.XmlElementAttribute("extension", typeof(System.Xml.Schema.XmlSchemaComplexContentExtension))]
1630         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaComplexContentRestriction))]
1631         public override System.Xml.Schema.XmlSchemaContent Content { get { throw null; } set { } }
1632         [System.Xml.Serialization.XmlAttributeAttribute("mixed")]
1633         public bool IsMixed { get { throw null; } set { } }
1634     }
1635     public partial class XmlSchemaComplexContentExtension : System.Xml.Schema.XmlSchemaContent
1636     {
XmlSchemaComplexContentExtension()1637         public XmlSchemaComplexContentExtension() { }
1638         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1639         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1640         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1641         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1642         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1643         [System.Xml.Serialization.XmlAttributeAttribute("base")]
1644         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
1645         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1646         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1647         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1648         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1649         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1650     }
1651     public partial class XmlSchemaComplexContentRestriction : System.Xml.Schema.XmlSchemaContent
1652     {
XmlSchemaComplexContentRestriction()1653         public XmlSchemaComplexContentRestriction() { }
1654         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1655         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1656         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1657         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1658         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1659         [System.Xml.Serialization.XmlAttributeAttribute("base")]
1660         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
1661         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1662         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1663         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1664         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1665         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1666     }
1667     public partial class XmlSchemaComplexType : System.Xml.Schema.XmlSchemaType
1668     {
XmlSchemaComplexType()1669         public XmlSchemaComplexType() { }
1670         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
1671         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
1672         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
1673         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
1674         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
1675         [System.Xml.Serialization.XmlIgnoreAttribute]
1676         public System.Xml.Schema.XmlSchemaObjectTable AttributeUses { get { throw null; } }
1677         [System.Xml.Serialization.XmlIgnoreAttribute]
1678         public System.Xml.Schema.XmlSchemaAnyAttribute AttributeWildcard { get { throw null; } }
1679         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1680         [System.Xml.Serialization.XmlAttributeAttribute("block")]
1681         public System.Xml.Schema.XmlSchemaDerivationMethod Block { get { throw null; } set { } }
1682         [System.Xml.Serialization.XmlIgnoreAttribute]
1683         public System.Xml.Schema.XmlSchemaDerivationMethod BlockResolved { get { throw null; } }
1684         [System.Xml.Serialization.XmlElementAttribute("complexContent", typeof(System.Xml.Schema.XmlSchemaComplexContent))]
1685         [System.Xml.Serialization.XmlElementAttribute("simpleContent", typeof(System.Xml.Schema.XmlSchemaSimpleContent))]
1686         public System.Xml.Schema.XmlSchemaContentModel ContentModel { get { throw null; } set { } }
1687         [System.Xml.Serialization.XmlIgnoreAttribute]
1688         public System.Xml.Schema.XmlSchemaContentType ContentType { get { throw null; } }
1689         [System.Xml.Serialization.XmlIgnoreAttribute]
1690         public System.Xml.Schema.XmlSchemaParticle ContentTypeParticle { get { throw null; } }
1691         [System.ComponentModel.DefaultValueAttribute(false)]
1692         [System.Xml.Serialization.XmlAttributeAttribute("abstract")]
1693         public bool IsAbstract { get { throw null; } set { } }
1694         [System.ComponentModel.DefaultValueAttribute(false)]
1695         [System.Xml.Serialization.XmlAttributeAttribute("mixed")]
1696         public override bool IsMixed { get { throw null; } set { } }
1697         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1698         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1699         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
1700         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1701         public System.Xml.Schema.XmlSchemaParticle Particle { get { throw null; } set { } }
1702     }
1703     public abstract partial class XmlSchemaContent : System.Xml.Schema.XmlSchemaAnnotated
1704     {
XmlSchemaContent()1705         protected XmlSchemaContent() { }
1706     }
1707     public abstract partial class XmlSchemaContentModel : System.Xml.Schema.XmlSchemaAnnotated
1708     {
XmlSchemaContentModel()1709         protected XmlSchemaContentModel() { }
1710         [System.Xml.Serialization.XmlIgnoreAttribute]
1711         public abstract System.Xml.Schema.XmlSchemaContent Content { get; set; }
1712     }
1713     public enum XmlSchemaContentProcessing
1714     {
1715         [System.Xml.Serialization.XmlEnumAttribute("lax")]
1716         Lax = 2,
1717         [System.Xml.Serialization.XmlIgnoreAttribute]
1718         None = 0,
1719         [System.Xml.Serialization.XmlEnumAttribute("skip")]
1720         Skip = 1,
1721         [System.Xml.Serialization.XmlEnumAttribute("strict")]
1722         Strict = 3,
1723     }
1724     public enum XmlSchemaContentType
1725     {
1726         ElementOnly = 2,
1727         Empty = 1,
1728         Mixed = 3,
1729         TextOnly = 0,
1730     }
1731     public abstract partial class XmlSchemaDatatype
1732     {
XmlSchemaDatatype()1733         protected XmlSchemaDatatype() { }
1734         public abstract System.Xml.XmlTokenizedType TokenizedType { get; }
1735         public virtual System.Xml.Schema.XmlTypeCode TypeCode { get { throw null; } }
1736         public abstract System.Type ValueType { get; }
1737         public virtual System.Xml.Schema.XmlSchemaDatatypeVariety Variety { get { throw null; } }
ChangeType(object value, System.Type targetType)1738         public virtual object ChangeType(object value, System.Type targetType) { throw null; }
ChangeType(object value, System.Type targetType, System.Xml.IXmlNamespaceResolver namespaceResolver)1739         public virtual object ChangeType(object value, System.Type targetType, System.Xml.IXmlNamespaceResolver namespaceResolver) { throw null; }
IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype datatype)1740         public virtual bool IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype datatype) { throw null; }
ParseValue(string s, System.Xml.XmlNameTable nameTable, System.Xml.IXmlNamespaceResolver nsmgr)1741         public abstract object ParseValue(string s, System.Xml.XmlNameTable nameTable, System.Xml.IXmlNamespaceResolver nsmgr);
1742     }
1743     public enum XmlSchemaDatatypeVariety
1744     {
1745         Atomic = 0,
1746         List = 1,
1747         Union = 2,
1748     }
1749     [System.FlagsAttribute]
1750     public enum XmlSchemaDerivationMethod
1751     {
1752         [System.Xml.Serialization.XmlEnumAttribute("#all")]
1753         All = 255,
1754         [System.Xml.Serialization.XmlEnumAttribute("")]
1755         Empty = 0,
1756         [System.Xml.Serialization.XmlEnumAttribute("extension")]
1757         Extension = 2,
1758         [System.Xml.Serialization.XmlEnumAttribute("list")]
1759         List = 8,
1760         [System.Xml.Serialization.XmlIgnoreAttribute]
1761         None = 256,
1762         [System.Xml.Serialization.XmlEnumAttribute("restriction")]
1763         Restriction = 4,
1764         [System.Xml.Serialization.XmlEnumAttribute("substitution")]
1765         Substitution = 1,
1766         [System.Xml.Serialization.XmlEnumAttribute("union")]
1767         Union = 16,
1768     }
1769     public partial class XmlSchemaDocumentation : System.Xml.Schema.XmlSchemaObject
1770     {
XmlSchemaDocumentation()1771         public XmlSchemaDocumentation() { }
1772         [System.Xml.Serialization.XmlAttributeAttribute("xml:lang")]
1773         public string Language { get { throw null; } set { } }
1774         [System.Xml.Serialization.XmlAnyElementAttribute]
1775         [System.Xml.Serialization.XmlTextAttribute]
1776         public System.Xml.XmlNode[] Markup { get { throw null; } set { } }
1777         [System.Xml.Serialization.XmlAttributeAttribute("source", DataType="anyURI")]
1778         public string Source { get { throw null; } set { } }
1779     }
1780     public partial class XmlSchemaElement : System.Xml.Schema.XmlSchemaParticle
1781     {
XmlSchemaElement()1782         public XmlSchemaElement() { }
1783         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1784         [System.Xml.Serialization.XmlAttributeAttribute("block")]
1785         public System.Xml.Schema.XmlSchemaDerivationMethod Block { get { throw null; } set { } }
1786         [System.Xml.Serialization.XmlIgnoreAttribute]
1787         public System.Xml.Schema.XmlSchemaDerivationMethod BlockResolved { get { throw null; } }
1788         [System.Xml.Serialization.XmlElementAttribute("key", typeof(System.Xml.Schema.XmlSchemaKey))]
1789         [System.Xml.Serialization.XmlElementAttribute("keyref", typeof(System.Xml.Schema.XmlSchemaKeyref))]
1790         [System.Xml.Serialization.XmlElementAttribute("unique", typeof(System.Xml.Schema.XmlSchemaUnique))]
1791         public System.Xml.Schema.XmlSchemaObjectCollection Constraints { get { throw null; } }
1792         [System.ComponentModel.DefaultValueAttribute(null)]
1793         [System.Xml.Serialization.XmlAttributeAttribute("default")]
1794         public string DefaultValue { get { throw null; } set { } }
1795         [System.Xml.Serialization.XmlIgnoreAttribute]
1796         public System.Xml.Schema.XmlSchemaType ElementSchemaType { get { throw null; } }
1797         [System.ObsoleteAttribute("This property has been deprecated. Please use ElementSchemaType property that returns a strongly typed element type. http://go.microsoft.com/fwlink/?linkid=14202")]
1798         [System.Xml.Serialization.XmlIgnoreAttribute]
1799         public object ElementType { get { throw null; } }
1800         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
1801         [System.Xml.Serialization.XmlAttributeAttribute("final")]
1802         public System.Xml.Schema.XmlSchemaDerivationMethod Final { get { throw null; } set { } }
1803         [System.Xml.Serialization.XmlIgnoreAttribute]
1804         public System.Xml.Schema.XmlSchemaDerivationMethod FinalResolved { get { throw null; } }
1805         [System.ComponentModel.DefaultValueAttribute(null)]
1806         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1807         public string FixedValue { get { throw null; } set { } }
1808         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaForm)(0))]
1809         [System.Xml.Serialization.XmlAttributeAttribute("form")]
1810         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
1811         [System.ComponentModel.DefaultValueAttribute(false)]
1812         [System.Xml.Serialization.XmlAttributeAttribute("abstract")]
1813         public bool IsAbstract { get { throw null; } set { } }
1814         [System.ComponentModel.DefaultValueAttribute(false)]
1815         [System.Xml.Serialization.XmlAttributeAttribute("nillable")]
1816         public bool IsNillable { get { throw null; } set { } }
1817         [System.ComponentModel.DefaultValueAttribute("")]
1818         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1819         public string Name { get { throw null; } set { } }
1820         [System.Xml.Serialization.XmlIgnoreAttribute]
1821         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1822         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1823         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1824         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
1825         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
1826         public System.Xml.Schema.XmlSchemaType SchemaType { get { throw null; } set { } }
1827         [System.Xml.Serialization.XmlAttributeAttribute("type")]
1828         public System.Xml.XmlQualifiedName SchemaTypeName { get { throw null; } set { } }
1829         [System.Xml.Serialization.XmlAttributeAttribute("substitutionGroup")]
1830         public System.Xml.XmlQualifiedName SubstitutionGroup { get { throw null; } set { } }
1831     }
1832     public partial class XmlSchemaEnumerationFacet : System.Xml.Schema.XmlSchemaFacet
1833     {
XmlSchemaEnumerationFacet()1834         public XmlSchemaEnumerationFacet() { }
1835     }
1836     public partial class XmlSchemaException : System.SystemException
1837     {
XmlSchemaException()1838         public XmlSchemaException() { }
XmlSchemaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1839         protected XmlSchemaException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaException(string message)1840         public XmlSchemaException(string message) { }
XmlSchemaException(string message, System.Exception innerException)1841         public XmlSchemaException(string message, System.Exception innerException) { }
XmlSchemaException(string message, System.Exception innerException, int lineNumber, int linePosition)1842         public XmlSchemaException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
1843         public int LineNumber { get { throw null; } }
1844         public int LinePosition { get { throw null; } }
1845         public override string Message { get { throw null; } }
1846         public System.Xml.Schema.XmlSchemaObject SourceSchemaObject { get { throw null; } }
1847         public string SourceUri { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1848         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1849     }
1850     public abstract partial class XmlSchemaExternal : System.Xml.Schema.XmlSchemaObject
1851     {
XmlSchemaExternal()1852         protected XmlSchemaExternal() { }
1853         [System.Xml.Serialization.XmlAttributeAttribute("id", DataType="ID")]
1854         public string Id { get { throw null; } set { } }
1855         [System.Xml.Serialization.XmlIgnoreAttribute]
1856         public System.Xml.Schema.XmlSchema Schema { get { throw null; } set { } }
1857         [System.Xml.Serialization.XmlAttributeAttribute("schemaLocation", DataType="anyURI")]
1858         public string SchemaLocation { get { throw null; } set { } }
1859         [System.Xml.Serialization.XmlAnyAttributeAttribute]
1860         public System.Xml.XmlAttribute[] UnhandledAttributes { get { throw null; } set { } }
1861     }
1862     public abstract partial class XmlSchemaFacet : System.Xml.Schema.XmlSchemaAnnotated
1863     {
XmlSchemaFacet()1864         protected XmlSchemaFacet() { }
1865         [System.ComponentModel.DefaultValueAttribute(false)]
1866         [System.Xml.Serialization.XmlAttributeAttribute("fixed")]
1867         public virtual bool IsFixed { get { throw null; } set { } }
1868         [System.Xml.Serialization.XmlAttributeAttribute("value")]
1869         public string Value { get { throw null; } set { } }
1870     }
1871     public enum XmlSchemaForm
1872     {
1873         [System.Xml.Serialization.XmlIgnoreAttribute]
1874         None = 0,
1875         [System.Xml.Serialization.XmlEnumAttribute("qualified")]
1876         Qualified = 1,
1877         [System.Xml.Serialization.XmlEnumAttribute("unqualified")]
1878         Unqualified = 2,
1879     }
1880     public partial class XmlSchemaFractionDigitsFacet : System.Xml.Schema.XmlSchemaNumericFacet
1881     {
XmlSchemaFractionDigitsFacet()1882         public XmlSchemaFractionDigitsFacet() { }
1883     }
1884     public partial class XmlSchemaGroup : System.Xml.Schema.XmlSchemaAnnotated
1885     {
XmlSchemaGroup()1886         public XmlSchemaGroup() { }
1887         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1888         public string Name { get { throw null; } set { } }
1889         [System.Xml.Serialization.XmlElementAttribute("all", typeof(System.Xml.Schema.XmlSchemaAll))]
1890         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
1891         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
1892         public System.Xml.Schema.XmlSchemaGroupBase Particle { get { throw null; } set { } }
1893         [System.Xml.Serialization.XmlIgnoreAttribute]
1894         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1895     }
1896     public abstract partial class XmlSchemaGroupBase : System.Xml.Schema.XmlSchemaParticle
1897     {
XmlSchemaGroupBase()1898         protected XmlSchemaGroupBase() { }
1899         [System.Xml.Serialization.XmlIgnoreAttribute]
1900         public abstract System.Xml.Schema.XmlSchemaObjectCollection Items { get; }
1901     }
1902     public partial class XmlSchemaGroupRef : System.Xml.Schema.XmlSchemaParticle
1903     {
XmlSchemaGroupRef()1904         public XmlSchemaGroupRef() { }
1905         [System.Xml.Serialization.XmlIgnoreAttribute]
1906         public System.Xml.Schema.XmlSchemaGroupBase Particle { get { throw null; } }
1907         [System.Xml.Serialization.XmlAttributeAttribute("ref")]
1908         public System.Xml.XmlQualifiedName RefName { get { throw null; } set { } }
1909     }
1910     public partial class XmlSchemaIdentityConstraint : System.Xml.Schema.XmlSchemaAnnotated
1911     {
XmlSchemaIdentityConstraint()1912         public XmlSchemaIdentityConstraint() { }
1913         [System.Xml.Serialization.XmlElementAttribute("field", typeof(System.Xml.Schema.XmlSchemaXPath))]
1914         public System.Xml.Schema.XmlSchemaObjectCollection Fields { get { throw null; } }
1915         [System.Xml.Serialization.XmlAttributeAttribute("name")]
1916         public string Name { get { throw null; } set { } }
1917         [System.Xml.Serialization.XmlIgnoreAttribute]
1918         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
1919         [System.Xml.Serialization.XmlElementAttribute("selector", typeof(System.Xml.Schema.XmlSchemaXPath))]
1920         public System.Xml.Schema.XmlSchemaXPath Selector { get { throw null; } set { } }
1921     }
1922     public partial class XmlSchemaImport : System.Xml.Schema.XmlSchemaExternal
1923     {
XmlSchemaImport()1924         public XmlSchemaImport() { }
1925         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1926         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1927         [System.Xml.Serialization.XmlAttributeAttribute("namespace", DataType="anyURI")]
1928         public string Namespace { get { throw null; } set { } }
1929     }
1930     public partial class XmlSchemaInclude : System.Xml.Schema.XmlSchemaExternal
1931     {
XmlSchemaInclude()1932         public XmlSchemaInclude() { }
1933         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
1934         public System.Xml.Schema.XmlSchemaAnnotation Annotation { get { throw null; } set { } }
1935     }
1936     public sealed partial class XmlSchemaInference
1937     {
XmlSchemaInference()1938         public XmlSchemaInference() { }
1939         public System.Xml.Schema.XmlSchemaInference.InferenceOption Occurrence { get { throw null; } set { } }
1940         public System.Xml.Schema.XmlSchemaInference.InferenceOption TypeInference { get { throw null; } set { } }
InferSchema(System.Xml.XmlReader instanceDocument)1941         public System.Xml.Schema.XmlSchemaSet InferSchema(System.Xml.XmlReader instanceDocument) { throw null; }
InferSchema(System.Xml.XmlReader instanceDocument, System.Xml.Schema.XmlSchemaSet schemas)1942         public System.Xml.Schema.XmlSchemaSet InferSchema(System.Xml.XmlReader instanceDocument, System.Xml.Schema.XmlSchemaSet schemas) { throw null; }
1943         public enum InferenceOption
1944         {
1945             Relaxed = 1,
1946             Restricted = 0,
1947         }
1948     }
1949     public partial class XmlSchemaInferenceException : System.Xml.Schema.XmlSchemaException
1950     {
XmlSchemaInferenceException()1951         public XmlSchemaInferenceException() { }
XmlSchemaInferenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1952         protected XmlSchemaInferenceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaInferenceException(string message)1953         public XmlSchemaInferenceException(string message) { }
XmlSchemaInferenceException(string message, System.Exception innerException)1954         public XmlSchemaInferenceException(string message, System.Exception innerException) { }
XmlSchemaInferenceException(string message, System.Exception innerException, int lineNumber, int linePosition)1955         public XmlSchemaInferenceException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1956         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
1957     }
1958     public partial class XmlSchemaInfo : System.Xml.Schema.IXmlSchemaInfo
1959     {
XmlSchemaInfo()1960         public XmlSchemaInfo() { }
1961         public System.Xml.Schema.XmlSchemaContentType ContentType { get { throw null; } set { } }
1962         public bool IsDefault { get { throw null; } set { } }
1963         public bool IsNil { get { throw null; } set { } }
1964         public System.Xml.Schema.XmlSchemaSimpleType MemberType { get { throw null; } set { } }
1965         public System.Xml.Schema.XmlSchemaAttribute SchemaAttribute { get { throw null; } set { } }
1966         public System.Xml.Schema.XmlSchemaElement SchemaElement { get { throw null; } set { } }
1967         public System.Xml.Schema.XmlSchemaType SchemaType { get { throw null; } set { } }
1968         public System.Xml.Schema.XmlSchemaValidity Validity { get { throw null; } set { } }
1969     }
1970     public partial class XmlSchemaKey : System.Xml.Schema.XmlSchemaIdentityConstraint
1971     {
XmlSchemaKey()1972         public XmlSchemaKey() { }
1973     }
1974     public partial class XmlSchemaKeyref : System.Xml.Schema.XmlSchemaIdentityConstraint
1975     {
XmlSchemaKeyref()1976         public XmlSchemaKeyref() { }
1977         [System.Xml.Serialization.XmlAttributeAttribute("refer")]
1978         public System.Xml.XmlQualifiedName Refer { get { throw null; } set { } }
1979     }
1980     public partial class XmlSchemaLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
1981     {
XmlSchemaLengthFacet()1982         public XmlSchemaLengthFacet() { }
1983     }
1984     public partial class XmlSchemaMaxExclusiveFacet : System.Xml.Schema.XmlSchemaFacet
1985     {
XmlSchemaMaxExclusiveFacet()1986         public XmlSchemaMaxExclusiveFacet() { }
1987     }
1988     public partial class XmlSchemaMaxInclusiveFacet : System.Xml.Schema.XmlSchemaFacet
1989     {
XmlSchemaMaxInclusiveFacet()1990         public XmlSchemaMaxInclusiveFacet() { }
1991     }
1992     public partial class XmlSchemaMaxLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
1993     {
XmlSchemaMaxLengthFacet()1994         public XmlSchemaMaxLengthFacet() { }
1995     }
1996     public partial class XmlSchemaMinExclusiveFacet : System.Xml.Schema.XmlSchemaFacet
1997     {
XmlSchemaMinExclusiveFacet()1998         public XmlSchemaMinExclusiveFacet() { }
1999     }
2000     public partial class XmlSchemaMinInclusiveFacet : System.Xml.Schema.XmlSchemaFacet
2001     {
XmlSchemaMinInclusiveFacet()2002         public XmlSchemaMinInclusiveFacet() { }
2003     }
2004     public partial class XmlSchemaMinLengthFacet : System.Xml.Schema.XmlSchemaNumericFacet
2005     {
XmlSchemaMinLengthFacet()2006         public XmlSchemaMinLengthFacet() { }
2007     }
2008     public partial class XmlSchemaNotation : System.Xml.Schema.XmlSchemaAnnotated
2009     {
XmlSchemaNotation()2010         public XmlSchemaNotation() { }
2011         [System.Xml.Serialization.XmlAttributeAttribute("name")]
2012         public string Name { get { throw null; } set { } }
2013         [System.Xml.Serialization.XmlAttributeAttribute("public")]
2014         public string Public { get { throw null; } set { } }
2015         [System.Xml.Serialization.XmlAttributeAttribute("system")]
2016         public string System { get { throw null; } set { } }
2017     }
2018     public abstract partial class XmlSchemaNumericFacet : System.Xml.Schema.XmlSchemaFacet
2019     {
XmlSchemaNumericFacet()2020         protected XmlSchemaNumericFacet() { }
2021     }
2022     public abstract partial class XmlSchemaObject
2023     {
XmlSchemaObject()2024         protected XmlSchemaObject() { }
2025         [System.Xml.Serialization.XmlIgnoreAttribute]
2026         public int LineNumber { get { throw null; } set { } }
2027         [System.Xml.Serialization.XmlIgnoreAttribute]
2028         public int LinePosition { get { throw null; } set { } }
2029         [System.Xml.Serialization.XmlNamespaceDeclarationsAttribute]
2030         public System.Xml.Serialization.XmlSerializerNamespaces Namespaces { get { throw null; } set { } }
2031         [System.Xml.Serialization.XmlIgnoreAttribute]
2032         public System.Xml.Schema.XmlSchemaObject Parent { get { throw null; } set { } }
2033         [System.Xml.Serialization.XmlIgnoreAttribute]
2034         public string SourceUri { get { throw null; } set { } }
2035     }
2036     public partial class XmlSchemaObjectCollection : System.Collections.CollectionBase
2037     {
XmlSchemaObjectCollection()2038         public XmlSchemaObjectCollection() { }
XmlSchemaObjectCollection(System.Xml.Schema.XmlSchemaObject parent)2039         public XmlSchemaObjectCollection(System.Xml.Schema.XmlSchemaObject parent) { }
2040         public virtual System.Xml.Schema.XmlSchemaObject this[int index] { get { throw null; } set { } }
Add(System.Xml.Schema.XmlSchemaObject item)2041         public int Add(System.Xml.Schema.XmlSchemaObject item) { throw null; }
Contains(System.Xml.Schema.XmlSchemaObject item)2042         public bool Contains(System.Xml.Schema.XmlSchemaObject item) { throw null; }
CopyTo(System.Xml.Schema.XmlSchemaObject[] array, int index)2043         public void CopyTo(System.Xml.Schema.XmlSchemaObject[] array, int index) { }
GetEnumerator()2044         public new System.Xml.Schema.XmlSchemaObjectEnumerator GetEnumerator() { throw null; }
IndexOf(System.Xml.Schema.XmlSchemaObject item)2045         public int IndexOf(System.Xml.Schema.XmlSchemaObject item) { throw null; }
Insert(int index, System.Xml.Schema.XmlSchemaObject item)2046         public void Insert(int index, System.Xml.Schema.XmlSchemaObject item) { }
OnClear()2047         protected override void OnClear() { }
OnInsert(int index, object item)2048         protected override void OnInsert(int index, object item) { }
OnRemove(int index, object item)2049         protected override void OnRemove(int index, object item) { }
OnSet(int index, object oldValue, object newValue)2050         protected override void OnSet(int index, object oldValue, object newValue) { }
Remove(System.Xml.Schema.XmlSchemaObject item)2051         public void Remove(System.Xml.Schema.XmlSchemaObject item) { }
2052     }
2053     public partial class XmlSchemaObjectEnumerator : System.Collections.IEnumerator
2054     {
XmlSchemaObjectEnumerator()2055         internal XmlSchemaObjectEnumerator() { }
2056         public System.Xml.Schema.XmlSchemaObject Current { get { throw null; } }
2057         object System.Collections.IEnumerator.Current { get { throw null; } }
MoveNext()2058         public bool MoveNext() { throw null; }
Reset()2059         public void Reset() { }
System.Collections.IEnumerator.MoveNext()2060         bool System.Collections.IEnumerator.MoveNext() { throw null; }
System.Collections.IEnumerator.Reset()2061         void System.Collections.IEnumerator.Reset() { }
2062     }
2063     public partial class XmlSchemaObjectTable
2064     {
XmlSchemaObjectTable()2065         internal XmlSchemaObjectTable() { }
2066         public int Count { get { throw null; } }
2067         public System.Xml.Schema.XmlSchemaObject this[System.Xml.XmlQualifiedName name] { get { throw null; } }
2068         public System.Collections.ICollection Names { get { throw null; } }
2069         public System.Collections.ICollection Values { get { throw null; } }
Contains(System.Xml.XmlQualifiedName name)2070         public bool Contains(System.Xml.XmlQualifiedName name) { throw null; }
GetEnumerator()2071         public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
2072     }
2073     public abstract partial class XmlSchemaParticle : System.Xml.Schema.XmlSchemaAnnotated
2074     {
XmlSchemaParticle()2075         protected XmlSchemaParticle() { }
2076         [System.Xml.Serialization.XmlIgnoreAttribute]
2077         public decimal MaxOccurs { get { throw null; } set { } }
2078         [System.Xml.Serialization.XmlAttributeAttribute("maxOccurs")]
2079         public string MaxOccursString { get { throw null; } set { } }
2080         [System.Xml.Serialization.XmlIgnoreAttribute]
2081         public decimal MinOccurs { get { throw null; } set { } }
2082         [System.Xml.Serialization.XmlAttributeAttribute("minOccurs")]
2083         public string MinOccursString { get { throw null; } set { } }
2084     }
2085     public partial class XmlSchemaPatternFacet : System.Xml.Schema.XmlSchemaFacet
2086     {
XmlSchemaPatternFacet()2087         public XmlSchemaPatternFacet() { }
2088     }
2089     public partial class XmlSchemaRedefine : System.Xml.Schema.XmlSchemaExternal
2090     {
XmlSchemaRedefine()2091         public XmlSchemaRedefine() { }
2092         [System.Xml.Serialization.XmlIgnoreAttribute]
2093         public System.Xml.Schema.XmlSchemaObjectTable AttributeGroups { get { throw null; } }
2094         [System.Xml.Serialization.XmlIgnoreAttribute]
2095         public System.Xml.Schema.XmlSchemaObjectTable Groups { get { throw null; } }
2096         [System.Xml.Serialization.XmlElementAttribute("annotation", typeof(System.Xml.Schema.XmlSchemaAnnotation))]
2097         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroup))]
2098         [System.Xml.Serialization.XmlElementAttribute("complexType", typeof(System.Xml.Schema.XmlSchemaComplexType))]
2099         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroup))]
2100         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2101         public System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
2102         [System.Xml.Serialization.XmlIgnoreAttribute]
2103         public System.Xml.Schema.XmlSchemaObjectTable SchemaTypes { get { throw null; } }
2104     }
2105     public partial class XmlSchemaSequence : System.Xml.Schema.XmlSchemaGroupBase
2106     {
XmlSchemaSequence()2107         public XmlSchemaSequence() { }
2108         [System.Xml.Serialization.XmlElementAttribute("any", typeof(System.Xml.Schema.XmlSchemaAny))]
2109         [System.Xml.Serialization.XmlElementAttribute("choice", typeof(System.Xml.Schema.XmlSchemaChoice))]
2110         [System.Xml.Serialization.XmlElementAttribute("element", typeof(System.Xml.Schema.XmlSchemaElement))]
2111         [System.Xml.Serialization.XmlElementAttribute("group", typeof(System.Xml.Schema.XmlSchemaGroupRef))]
2112         [System.Xml.Serialization.XmlElementAttribute("sequence", typeof(System.Xml.Schema.XmlSchemaSequence))]
2113         public override System.Xml.Schema.XmlSchemaObjectCollection Items { get { throw null; } }
2114     }
2115     public partial class XmlSchemaSet
2116     {
XmlSchemaSet()2117         public XmlSchemaSet() { }
XmlSchemaSet(System.Xml.XmlNameTable nameTable)2118         public XmlSchemaSet(System.Xml.XmlNameTable nameTable) { }
2119         public System.Xml.Schema.XmlSchemaCompilationSettings CompilationSettings { get { throw null; } set { } }
2120         public int Count { get { throw null; } }
2121         public System.Xml.Schema.XmlSchemaObjectTable GlobalAttributes { get { throw null; } }
2122         public System.Xml.Schema.XmlSchemaObjectTable GlobalElements { get { throw null; } }
2123         public System.Xml.Schema.XmlSchemaObjectTable GlobalTypes { get { throw null; } }
2124         public bool IsCompiled { get { throw null; } }
2125         public System.Xml.XmlNameTable NameTable { get { throw null; } }
2126         public System.Xml.XmlResolver XmlResolver { set { } }
2127         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
Add(string targetNamespace, string schemaUri)2128         public System.Xml.Schema.XmlSchema Add(string targetNamespace, string schemaUri) { throw null; }
Add(string targetNamespace, System.Xml.XmlReader schemaDocument)2129         public System.Xml.Schema.XmlSchema Add(string targetNamespace, System.Xml.XmlReader schemaDocument) { throw null; }
Add(System.Xml.Schema.XmlSchema schema)2130         public System.Xml.Schema.XmlSchema Add(System.Xml.Schema.XmlSchema schema) { throw null; }
Add(System.Xml.Schema.XmlSchemaSet schemas)2131         public void Add(System.Xml.Schema.XmlSchemaSet schemas) { }
Compile()2132         public void Compile() { }
Contains(string targetNamespace)2133         public bool Contains(string targetNamespace) { throw null; }
Contains(System.Xml.Schema.XmlSchema schema)2134         public bool Contains(System.Xml.Schema.XmlSchema schema) { throw null; }
CopyTo(System.Xml.Schema.XmlSchema[] schemas, int index)2135         public void CopyTo(System.Xml.Schema.XmlSchema[] schemas, int index) { }
Remove(System.Xml.Schema.XmlSchema schema)2136         public System.Xml.Schema.XmlSchema Remove(System.Xml.Schema.XmlSchema schema) { throw null; }
RemoveRecursive(System.Xml.Schema.XmlSchema schemaToRemove)2137         public bool RemoveRecursive(System.Xml.Schema.XmlSchema schemaToRemove) { throw null; }
Reprocess(System.Xml.Schema.XmlSchema schema)2138         public System.Xml.Schema.XmlSchema Reprocess(System.Xml.Schema.XmlSchema schema) { throw null; }
Schemas()2139         public System.Collections.ICollection Schemas() { throw null; }
Schemas(string targetNamespace)2140         public System.Collections.ICollection Schemas(string targetNamespace) { throw null; }
2141     }
2142     public partial class XmlSchemaSimpleContent : System.Xml.Schema.XmlSchemaContentModel
2143     {
XmlSchemaSimpleContent()2144         public XmlSchemaSimpleContent() { }
2145         [System.Xml.Serialization.XmlElementAttribute("extension", typeof(System.Xml.Schema.XmlSchemaSimpleContentExtension))]
2146         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaSimpleContentRestriction))]
2147         public override System.Xml.Schema.XmlSchemaContent Content { get { throw null; } set { } }
2148     }
2149     public partial class XmlSchemaSimpleContentExtension : System.Xml.Schema.XmlSchemaContent
2150     {
XmlSchemaSimpleContentExtension()2151         public XmlSchemaSimpleContentExtension() { }
2152         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
2153         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
2154         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
2155         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
2156         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
2157         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2158         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2159     }
2160     public partial class XmlSchemaSimpleContentRestriction : System.Xml.Schema.XmlSchemaContent
2161     {
XmlSchemaSimpleContentRestriction()2162         public XmlSchemaSimpleContentRestriction() { }
2163         [System.Xml.Serialization.XmlElementAttribute("anyAttribute")]
2164         public System.Xml.Schema.XmlSchemaAnyAttribute AnyAttribute { get { throw null; } set { } }
2165         [System.Xml.Serialization.XmlElementAttribute("attribute", typeof(System.Xml.Schema.XmlSchemaAttribute))]
2166         [System.Xml.Serialization.XmlElementAttribute("attributeGroup", typeof(System.Xml.Schema.XmlSchemaAttributeGroupRef))]
2167         public System.Xml.Schema.XmlSchemaObjectCollection Attributes { get { throw null; } }
2168         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2169         public System.Xml.Schema.XmlSchemaSimpleType BaseType { get { throw null; } set { } }
2170         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2171         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2172         [System.Xml.Serialization.XmlElementAttribute("enumeration", typeof(System.Xml.Schema.XmlSchemaEnumerationFacet))]
2173         [System.Xml.Serialization.XmlElementAttribute("fractionDigits", typeof(System.Xml.Schema.XmlSchemaFractionDigitsFacet))]
2174         [System.Xml.Serialization.XmlElementAttribute("length", typeof(System.Xml.Schema.XmlSchemaLengthFacet))]
2175         [System.Xml.Serialization.XmlElementAttribute("maxExclusive", typeof(System.Xml.Schema.XmlSchemaMaxExclusiveFacet))]
2176         [System.Xml.Serialization.XmlElementAttribute("maxInclusive", typeof(System.Xml.Schema.XmlSchemaMaxInclusiveFacet))]
2177         [System.Xml.Serialization.XmlElementAttribute("maxLength", typeof(System.Xml.Schema.XmlSchemaMaxLengthFacet))]
2178         [System.Xml.Serialization.XmlElementAttribute("minExclusive", typeof(System.Xml.Schema.XmlSchemaMinExclusiveFacet))]
2179         [System.Xml.Serialization.XmlElementAttribute("minInclusive", typeof(System.Xml.Schema.XmlSchemaMinInclusiveFacet))]
2180         [System.Xml.Serialization.XmlElementAttribute("minLength", typeof(System.Xml.Schema.XmlSchemaMinLengthFacet))]
2181         [System.Xml.Serialization.XmlElementAttribute("pattern", typeof(System.Xml.Schema.XmlSchemaPatternFacet))]
2182         [System.Xml.Serialization.XmlElementAttribute("totalDigits", typeof(System.Xml.Schema.XmlSchemaTotalDigitsFacet))]
2183         [System.Xml.Serialization.XmlElementAttribute("whiteSpace", typeof(System.Xml.Schema.XmlSchemaWhiteSpaceFacet))]
2184         public System.Xml.Schema.XmlSchemaObjectCollection Facets { get { throw null; } }
2185     }
2186     public partial class XmlSchemaSimpleType : System.Xml.Schema.XmlSchemaType
2187     {
XmlSchemaSimpleType()2188         public XmlSchemaSimpleType() { }
2189         [System.Xml.Serialization.XmlElementAttribute("list", typeof(System.Xml.Schema.XmlSchemaSimpleTypeList))]
2190         [System.Xml.Serialization.XmlElementAttribute("restriction", typeof(System.Xml.Schema.XmlSchemaSimpleTypeRestriction))]
2191         [System.Xml.Serialization.XmlElementAttribute("union", typeof(System.Xml.Schema.XmlSchemaSimpleTypeUnion))]
2192         public System.Xml.Schema.XmlSchemaSimpleTypeContent Content { get { throw null; } set { } }
2193     }
2194     public abstract partial class XmlSchemaSimpleTypeContent : System.Xml.Schema.XmlSchemaAnnotated
2195     {
XmlSchemaSimpleTypeContent()2196         protected XmlSchemaSimpleTypeContent() { }
2197     }
2198     public partial class XmlSchemaSimpleTypeList : System.Xml.Schema.XmlSchemaSimpleTypeContent
2199     {
XmlSchemaSimpleTypeList()2200         public XmlSchemaSimpleTypeList() { }
2201         [System.Xml.Serialization.XmlIgnoreAttribute]
2202         public System.Xml.Schema.XmlSchemaSimpleType BaseItemType { get { throw null; } set { } }
2203         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2204         public System.Xml.Schema.XmlSchemaSimpleType ItemType { get { throw null; } set { } }
2205         [System.Xml.Serialization.XmlAttributeAttribute("itemType")]
2206         public System.Xml.XmlQualifiedName ItemTypeName { get { throw null; } set { } }
2207     }
2208     public partial class XmlSchemaSimpleTypeRestriction : System.Xml.Schema.XmlSchemaSimpleTypeContent
2209     {
XmlSchemaSimpleTypeRestriction()2210         public XmlSchemaSimpleTypeRestriction() { }
2211         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2212         public System.Xml.Schema.XmlSchemaSimpleType BaseType { get { throw null; } set { } }
2213         [System.Xml.Serialization.XmlAttributeAttribute("base")]
2214         public System.Xml.XmlQualifiedName BaseTypeName { get { throw null; } set { } }
2215         [System.Xml.Serialization.XmlElementAttribute("enumeration", typeof(System.Xml.Schema.XmlSchemaEnumerationFacet))]
2216         [System.Xml.Serialization.XmlElementAttribute("fractionDigits", typeof(System.Xml.Schema.XmlSchemaFractionDigitsFacet))]
2217         [System.Xml.Serialization.XmlElementAttribute("length", typeof(System.Xml.Schema.XmlSchemaLengthFacet))]
2218         [System.Xml.Serialization.XmlElementAttribute("maxExclusive", typeof(System.Xml.Schema.XmlSchemaMaxExclusiveFacet))]
2219         [System.Xml.Serialization.XmlElementAttribute("maxInclusive", typeof(System.Xml.Schema.XmlSchemaMaxInclusiveFacet))]
2220         [System.Xml.Serialization.XmlElementAttribute("maxLength", typeof(System.Xml.Schema.XmlSchemaMaxLengthFacet))]
2221         [System.Xml.Serialization.XmlElementAttribute("minExclusive", typeof(System.Xml.Schema.XmlSchemaMinExclusiveFacet))]
2222         [System.Xml.Serialization.XmlElementAttribute("minInclusive", typeof(System.Xml.Schema.XmlSchemaMinInclusiveFacet))]
2223         [System.Xml.Serialization.XmlElementAttribute("minLength", typeof(System.Xml.Schema.XmlSchemaMinLengthFacet))]
2224         [System.Xml.Serialization.XmlElementAttribute("pattern", typeof(System.Xml.Schema.XmlSchemaPatternFacet))]
2225         [System.Xml.Serialization.XmlElementAttribute("totalDigits", typeof(System.Xml.Schema.XmlSchemaTotalDigitsFacet))]
2226         [System.Xml.Serialization.XmlElementAttribute("whiteSpace", typeof(System.Xml.Schema.XmlSchemaWhiteSpaceFacet))]
2227         public System.Xml.Schema.XmlSchemaObjectCollection Facets { get { throw null; } }
2228     }
2229     public partial class XmlSchemaSimpleTypeUnion : System.Xml.Schema.XmlSchemaSimpleTypeContent
2230     {
XmlSchemaSimpleTypeUnion()2231         public XmlSchemaSimpleTypeUnion() { }
2232         [System.Xml.Serialization.XmlIgnoreAttribute]
2233         public System.Xml.Schema.XmlSchemaSimpleType[] BaseMemberTypes { get { throw null; } }
2234         [System.Xml.Serialization.XmlElementAttribute("simpleType", typeof(System.Xml.Schema.XmlSchemaSimpleType))]
2235         public System.Xml.Schema.XmlSchemaObjectCollection BaseTypes { get { throw null; } }
2236         [System.Xml.Serialization.XmlAttributeAttribute("memberTypes")]
2237         public System.Xml.XmlQualifiedName[] MemberTypes { get { throw null; } set { } }
2238     }
2239     public partial class XmlSchemaTotalDigitsFacet : System.Xml.Schema.XmlSchemaNumericFacet
2240     {
XmlSchemaTotalDigitsFacet()2241         public XmlSchemaTotalDigitsFacet() { }
2242     }
2243     public partial class XmlSchemaType : System.Xml.Schema.XmlSchemaAnnotated
2244     {
XmlSchemaType()2245         public XmlSchemaType() { }
2246         [System.ObsoleteAttribute("This property has been deprecated. Please use BaseXmlSchemaType property that returns a strongly typed base schema type. http://go.microsoft.com/fwlink/?linkid=14202")]
2247         [System.Xml.Serialization.XmlIgnoreAttribute]
2248         public object BaseSchemaType { get { throw null; } }
2249         [System.Xml.Serialization.XmlIgnoreAttribute]
2250         public System.Xml.Schema.XmlSchemaType BaseXmlSchemaType { get { throw null; } }
2251         [System.Xml.Serialization.XmlIgnoreAttribute]
2252         public System.Xml.Schema.XmlSchemaDatatype Datatype { get { throw null; } }
2253         [System.Xml.Serialization.XmlIgnoreAttribute]
2254         public System.Xml.Schema.XmlSchemaDerivationMethod DerivedBy { get { throw null; } }
2255         [System.ComponentModel.DefaultValueAttribute((System.Xml.Schema.XmlSchemaDerivationMethod)(256))]
2256         [System.Xml.Serialization.XmlAttributeAttribute("final")]
2257         public System.Xml.Schema.XmlSchemaDerivationMethod Final { get { throw null; } set { } }
2258         [System.Xml.Serialization.XmlIgnoreAttribute]
2259         public System.Xml.Schema.XmlSchemaDerivationMethod FinalResolved { get { throw null; } }
2260         [System.Xml.Serialization.XmlIgnoreAttribute]
2261         public virtual bool IsMixed { get { throw null; } set { } }
2262         [System.Xml.Serialization.XmlAttributeAttribute("name")]
2263         public string Name { get { throw null; } set { } }
2264         [System.Xml.Serialization.XmlIgnoreAttribute]
2265         public System.Xml.XmlQualifiedName QualifiedName { get { throw null; } }
2266         [System.Xml.Serialization.XmlIgnoreAttribute]
2267         public System.Xml.Schema.XmlTypeCode TypeCode { get { throw null; } }
GetBuiltInComplexType(System.Xml.Schema.XmlTypeCode typeCode)2268         public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType(System.Xml.Schema.XmlTypeCode typeCode) { throw null; }
GetBuiltInComplexType(System.Xml.XmlQualifiedName qualifiedName)2269         public static System.Xml.Schema.XmlSchemaComplexType GetBuiltInComplexType(System.Xml.XmlQualifiedName qualifiedName) { throw null; }
GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode typeCode)2270         public static System.Xml.Schema.XmlSchemaSimpleType GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode typeCode) { throw null; }
GetBuiltInSimpleType(System.Xml.XmlQualifiedName qualifiedName)2271         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)2272         public static bool IsDerivedFrom(System.Xml.Schema.XmlSchemaType derivedType, System.Xml.Schema.XmlSchemaType baseType, System.Xml.Schema.XmlSchemaDerivationMethod except) { throw null; }
2273     }
2274     public partial class XmlSchemaUnique : System.Xml.Schema.XmlSchemaIdentityConstraint
2275     {
XmlSchemaUnique()2276         public XmlSchemaUnique() { }
2277     }
2278     public enum XmlSchemaUse
2279     {
2280         [System.Xml.Serialization.XmlIgnoreAttribute]
2281         None = 0,
2282         [System.Xml.Serialization.XmlEnumAttribute("optional")]
2283         Optional = 1,
2284         [System.Xml.Serialization.XmlEnumAttribute("prohibited")]
2285         Prohibited = 2,
2286         [System.Xml.Serialization.XmlEnumAttribute("required")]
2287         Required = 3,
2288     }
2289     public partial class XmlSchemaValidationException : System.Xml.Schema.XmlSchemaException
2290     {
XmlSchemaValidationException()2291         public XmlSchemaValidationException() { }
XmlSchemaValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2292         protected XmlSchemaValidationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XmlSchemaValidationException(string message)2293         public XmlSchemaValidationException(string message) { }
XmlSchemaValidationException(string message, System.Exception innerException)2294         public XmlSchemaValidationException(string message, System.Exception innerException) { }
XmlSchemaValidationException(string message, System.Exception innerException, int lineNumber, int linePosition)2295         public XmlSchemaValidationException(string message, System.Exception innerException, int lineNumber, int linePosition) { }
2296         public object SourceObject { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2297         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
SetSourceObject(object sourceObject)2298         protected internal void SetSourceObject(object sourceObject) { }
2299     }
2300     [System.FlagsAttribute]
2301     public enum XmlSchemaValidationFlags
2302     {
2303         AllowXmlAttributes = 16,
2304         None = 0,
2305         ProcessIdentityConstraints = 8,
2306         ProcessInlineSchema = 1,
2307         ProcessSchemaLocation = 2,
2308         ReportValidationWarnings = 4,
2309     }
2310     public sealed partial class XmlSchemaValidator
2311     {
XmlSchemaValidator(System.Xml.XmlNameTable nameTable, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.IXmlNamespaceResolver namespaceResolver, System.Xml.Schema.XmlSchemaValidationFlags validationFlags)2312         public XmlSchemaValidator(System.Xml.XmlNameTable nameTable, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.IXmlNamespaceResolver namespaceResolver, System.Xml.Schema.XmlSchemaValidationFlags validationFlags) { }
2313         public System.Xml.IXmlLineInfo LineInfoProvider { get { throw null; } set { } }
2314         public System.Uri SourceUri { get { throw null; } set { } }
2315         public object ValidationEventSender { get { throw null; } set { } }
2316         public System.Xml.XmlResolver XmlResolver { set { } }
2317         public event System.Xml.Schema.ValidationEventHandler ValidationEventHandler { add { } remove { } }
AddSchema(System.Xml.Schema.XmlSchema schema)2318         public void AddSchema(System.Xml.Schema.XmlSchema schema) { }
EndValidation()2319         public void EndValidation() { }
GetExpectedAttributes()2320         public System.Xml.Schema.XmlSchemaAttribute[] GetExpectedAttributes() { throw null; }
GetExpectedParticles()2321         public System.Xml.Schema.XmlSchemaParticle[] GetExpectedParticles() { throw null; }
GetUnspecifiedDefaultAttributes(System.Collections.ArrayList defaultAttributes)2322         public void GetUnspecifiedDefaultAttributes(System.Collections.ArrayList defaultAttributes) { }
Initialize()2323         public void Initialize() { }
Initialize(System.Xml.Schema.XmlSchemaObject partialValidationType)2324         public void Initialize(System.Xml.Schema.XmlSchemaObject partialValidationType) { }
SkipToEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo)2325         public void SkipToEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo) { }
ValidateAttribute(string localName, string namespaceUri, string attributeValue, System.Xml.Schema.XmlSchemaInfo schemaInfo)2326         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)2327         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)2328         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)2329         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)2330         public object ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo) { throw null; }
ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo, object typedValue)2331         public object ValidateEndElement(System.Xml.Schema.XmlSchemaInfo schemaInfo, object typedValue) { throw null; }
ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo schemaInfo)2332         public void ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo schemaInfo) { }
ValidateText(string elementValue)2333         public void ValidateText(string elementValue) { }
ValidateText(System.Xml.Schema.XmlValueGetter elementValue)2334         public void ValidateText(System.Xml.Schema.XmlValueGetter elementValue) { }
ValidateWhitespace(string elementValue)2335         public void ValidateWhitespace(string elementValue) { }
ValidateWhitespace(System.Xml.Schema.XmlValueGetter elementValue)2336         public void ValidateWhitespace(System.Xml.Schema.XmlValueGetter elementValue) { }
2337     }
2338     public enum XmlSchemaValidity
2339     {
2340         Invalid = 2,
2341         NotKnown = 0,
2342         Valid = 1,
2343     }
2344     public partial class XmlSchemaWhiteSpaceFacet : System.Xml.Schema.XmlSchemaFacet
2345     {
XmlSchemaWhiteSpaceFacet()2346         public XmlSchemaWhiteSpaceFacet() { }
2347     }
2348     public partial class XmlSchemaXPath : System.Xml.Schema.XmlSchemaAnnotated
2349     {
XmlSchemaXPath()2350         public XmlSchemaXPath() { }
2351         [System.ComponentModel.DefaultValueAttribute("")]
2352         [System.Xml.Serialization.XmlAttributeAttribute("xpath")]
2353         public string XPath { get { throw null; } set { } }
2354     }
2355     public enum XmlSeverityType
2356     {
2357         Error = 0,
2358         Warning = 1,
2359     }
2360     public enum XmlTypeCode
2361     {
2362         AnyAtomicType = 10,
2363         AnyUri = 28,
2364         Attribute = 5,
2365         Base64Binary = 27,
2366         Boolean = 13,
2367         Byte = 46,
2368         Comment = 8,
2369         Date = 20,
2370         DateTime = 18,
2371         DayTimeDuration = 54,
2372         Decimal = 14,
2373         Document = 3,
2374         Double = 16,
2375         Duration = 17,
2376         Element = 4,
2377         Entity = 39,
2378         Float = 15,
2379         GDay = 24,
2380         GMonth = 25,
2381         GMonthDay = 23,
2382         GYear = 22,
2383         GYearMonth = 21,
2384         HexBinary = 26,
2385         Id = 37,
2386         Idref = 38,
2387         Int = 44,
2388         Integer = 40,
2389         Item = 1,
2390         Language = 33,
2391         Long = 43,
2392         Name = 35,
2393         Namespace = 6,
2394         NCName = 36,
2395         NegativeInteger = 42,
2396         NmToken = 34,
2397         Node = 2,
2398         None = 0,
2399         NonNegativeInteger = 47,
2400         NonPositiveInteger = 41,
2401         NormalizedString = 31,
2402         Notation = 30,
2403         PositiveInteger = 52,
2404         ProcessingInstruction = 7,
2405         QName = 29,
2406         Short = 45,
2407         String = 12,
2408         Text = 9,
2409         Time = 19,
2410         Token = 32,
2411         UnsignedByte = 51,
2412         UnsignedInt = 49,
2413         UnsignedLong = 48,
2414         UnsignedShort = 50,
2415         UntypedAtomic = 11,
2416         YearMonthDuration = 53,
2417     }
XmlValueGetter()2418     public delegate object XmlValueGetter();
2419 }
2420 namespace System.Xml.Serialization
2421 {
2422     public partial interface IXmlSerializable
2423     {
2424         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
GetSchema()2425         System.Xml.Schema.XmlSchema GetSchema();
ReadXml(System.Xml.XmlReader reader)2426         void ReadXml(System.Xml.XmlReader reader);
WriteXml(System.Xml.XmlWriter writer)2427         void WriteXml(System.Xml.XmlWriter writer);
2428     }
2429     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2430     public partial class XmlAnyAttributeAttribute : System.Attribute
2431     {
XmlAnyAttributeAttribute()2432         public XmlAnyAttributeAttribute() { }
2433     }
2434     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=true)]
2435     public partial class XmlAnyElementAttribute : System.Attribute
2436     {
XmlAnyElementAttribute()2437         public XmlAnyElementAttribute() { }
XmlAnyElementAttribute(string name)2438         public XmlAnyElementAttribute(string name) { }
XmlAnyElementAttribute(string name, string ns)2439         public XmlAnyElementAttribute(string name, string ns) { }
2440         public string Name { get { throw null; } set { } }
2441         public string Namespace { get { throw null; } set { } }
2442         public int Order { get { throw null; } set { } }
2443     }
2444     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2445     public partial class XmlAttributeAttribute : System.Attribute
2446     {
XmlAttributeAttribute()2447         public XmlAttributeAttribute() { }
XmlAttributeAttribute(string attributeName)2448         public XmlAttributeAttribute(string attributeName) { }
XmlAttributeAttribute(string attributeName, System.Type type)2449         public XmlAttributeAttribute(string attributeName, System.Type type) { }
XmlAttributeAttribute(System.Type type)2450         public XmlAttributeAttribute(System.Type type) { }
2451         public string AttributeName { get { throw null; } set { } }
2452         public string DataType { get { throw null; } set { } }
2453         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2454         public string Namespace { get { throw null; } set { } }
2455         public System.Type Type { get { throw null; } set { } }
2456     }
2457     [System.AttributeUsageAttribute((System.AttributeTargets)(10624), AllowMultiple=true)]
2458     public partial class XmlElementAttribute : System.Attribute
2459     {
XmlElementAttribute()2460         public XmlElementAttribute() { }
XmlElementAttribute(string elementName)2461         public XmlElementAttribute(string elementName) { }
XmlElementAttribute(string elementName, System.Type type)2462         public XmlElementAttribute(string elementName, System.Type type) { }
XmlElementAttribute(System.Type type)2463         public XmlElementAttribute(System.Type type) { }
2464         public string DataType { get { throw null; } set { } }
2465         public string ElementName { get { throw null; } set { } }
2466         public System.Xml.Schema.XmlSchemaForm Form { get { throw null; } set { } }
2467         public bool IsNullable { get { throw null; } set { } }
2468         public string Namespace { get { throw null; } set { } }
2469         public int Order { get { throw null; } set { } }
2470         public System.Type Type { get { throw null; } set { } }
2471     }
2472     [System.AttributeUsageAttribute((System.AttributeTargets)(256))]
2473     public partial class XmlEnumAttribute : System.Attribute
2474     {
XmlEnumAttribute()2475         public XmlEnumAttribute() { }
XmlEnumAttribute(string name)2476         public XmlEnumAttribute(string name) { }
2477         public string Name { get { throw null; } set { } }
2478     }
2479     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2480     public partial class XmlIgnoreAttribute : System.Attribute
2481     {
XmlIgnoreAttribute()2482         public XmlIgnoreAttribute() { }
2483     }[System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2484     public partial class XmlNamespaceDeclarationsAttribute : System.Attribute
2485     {
XmlNamespaceDeclarationsAttribute()2486         public XmlNamespaceDeclarationsAttribute() { }
2487     }
2488     [System.AttributeUsageAttribute((System.AttributeTargets)(9244))]
2489     public partial class XmlRootAttribute : System.Attribute
2490     {
XmlRootAttribute()2491         public XmlRootAttribute() { }
XmlRootAttribute(string elementName)2492         public XmlRootAttribute(string elementName) { }
2493         public string DataType { get { throw null; } set { } }
2494         public string ElementName { get { throw null; } set { } }
2495         public bool IsNullable { get { throw null; } set { } }
2496         public string Namespace { get { throw null; } set { } }
2497     }
2498     [System.AttributeUsageAttribute((System.AttributeTargets)(1036))]
2499     public sealed partial class XmlSchemaProviderAttribute : System.Attribute
2500     {
XmlSchemaProviderAttribute(string methodName)2501         public XmlSchemaProviderAttribute(string methodName) { }
2502         public bool IsAny { get { throw null; } set { } }
2503         public string MethodName { get { throw null; } }
2504     }
2505     public partial class XmlSerializerNamespaces
2506     {
XmlSerializerNamespaces()2507         public XmlSerializerNamespaces() { }
XmlSerializerNamespaces(System.Xml.Serialization.XmlSerializerNamespaces namespaces)2508         public XmlSerializerNamespaces(System.Xml.Serialization.XmlSerializerNamespaces namespaces) { }
XmlSerializerNamespaces(System.Xml.XmlQualifiedName[] namespaces)2509         public XmlSerializerNamespaces(System.Xml.XmlQualifiedName[] namespaces) { }
2510         public int Count { get { throw null; } }
Add(string prefix, string ns)2511         public void Add(string prefix, string ns) { }
ToArray()2512         public System.Xml.XmlQualifiedName[] ToArray() { throw null; }
2513     }
2514     [System.AttributeUsageAttribute((System.AttributeTargets)(10624))]
2515     public partial class XmlTextAttribute : System.Attribute
2516     {
XmlTextAttribute()2517         public XmlTextAttribute() { }
XmlTextAttribute(System.Type type)2518         public XmlTextAttribute(System.Type type) { }
2519         public string DataType { get { throw null; } set { } }
2520         public System.Type Type { get { throw null; } set { } }
2521     }
2522 }
2523 namespace System.Xml.XPath
2524 {
2525     public partial interface IXPathNavigable
2526     {
CreateNavigator()2527         System.Xml.XPath.XPathNavigator CreateNavigator();
2528     }
2529     public enum XmlCaseOrder
2530     {
2531         LowerFirst = 2,
2532         None = 0,
2533         UpperFirst = 1,
2534     }
2535     public enum XmlDataType
2536     {
2537         Number = 2,
2538         Text = 1,
2539     }
2540     public enum XmlSortOrder
2541     {
2542         Ascending = 1,
2543         Descending = 2,
2544     }
2545     public abstract partial class XPathExpression
2546     {
XPathExpression()2547         internal XPathExpression() { }
2548         public abstract string Expression { get; }
2549         public abstract System.Xml.XPath.XPathResultType ReturnType { get; }
AddSort(object expr, System.Collections.IComparer comparer)2550         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)2551         public abstract void AddSort(object expr, System.Xml.XPath.XmlSortOrder order, System.Xml.XPath.XmlCaseOrder caseOrder, string lang, System.Xml.XPath.XmlDataType dataType);
Clone()2552         public abstract System.Xml.XPath.XPathExpression Clone();
Compile(string xpath)2553         public static System.Xml.XPath.XPathExpression Compile(string xpath) { throw null; }
Compile(string xpath, System.Xml.IXmlNamespaceResolver nsResolver)2554         public static System.Xml.XPath.XPathExpression Compile(string xpath, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
SetContext(System.Xml.IXmlNamespaceResolver nsResolver)2555         public abstract void SetContext(System.Xml.IXmlNamespaceResolver nsResolver);
SetContext(System.Xml.XmlNamespaceManager nsManager)2556         public abstract void SetContext(System.Xml.XmlNamespaceManager nsManager);
2557     }
2558     public abstract partial class XPathItem
2559     {
XPathItem()2560         protected XPathItem() { }
2561         public abstract bool IsNode { get; }
2562         public abstract object TypedValue { get; }
2563         public abstract string Value { get; }
2564         public abstract bool ValueAsBoolean { get; }
2565         public abstract System.DateTime ValueAsDateTime { get; }
2566         public abstract double ValueAsDouble { get; }
2567         public abstract int ValueAsInt { get; }
2568         public abstract long ValueAsLong { get; }
2569         public abstract System.Type ValueType { get; }
2570         public abstract System.Xml.Schema.XmlSchemaType XmlType { get; }
ValueAs(System.Type returnType)2571         public virtual object ValueAs(System.Type returnType) { throw null; }
ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver)2572         public abstract object ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver);
2573     }
2574     public enum XPathNamespaceScope
2575     {
2576         All = 0,
2577         ExcludeXml = 1,
2578         Local = 2,
2579     }
2580     public abstract partial class XPathNavigator : System.Xml.XPath.XPathItem, System.ICloneable, System.Xml.IXmlNamespaceResolver, System.Xml.XPath.IXPathNavigable
2581     {
XPathNavigator()2582         protected XPathNavigator() { }
2583         public abstract string BaseURI { get; }
2584         public virtual bool CanEdit { get { throw null; } }
2585         public virtual bool HasAttributes { get { throw null; } }
2586         public virtual bool HasChildren { get { throw null; } }
2587         public virtual string InnerXml { get { throw null; } set { } }
2588         public abstract bool IsEmptyElement { get; }
2589         public sealed override bool IsNode { get { throw null; } }
2590         public abstract string LocalName { get; }
2591         public abstract string Name { get; }
2592         public abstract string NamespaceURI { get; }
2593         public abstract System.Xml.XmlNameTable NameTable { get; }
2594         public static System.Collections.IEqualityComparer NavigatorComparer { get { throw null; } }
2595         public abstract System.Xml.XPath.XPathNodeType NodeType { get; }
2596         public virtual string OuterXml { get { throw null; } set { } }
2597         public abstract string Prefix { get; }
2598         public virtual System.Xml.Schema.IXmlSchemaInfo SchemaInfo { get { throw null; } }
2599         public override object TypedValue { get { throw null; } }
2600         public virtual object UnderlyingObject { get { throw null; } }
2601         public override bool ValueAsBoolean { get { throw null; } }
2602         public override System.DateTime ValueAsDateTime { get { throw null; } }
2603         public override double ValueAsDouble { get { throw null; } }
2604         public override int ValueAsInt { get { throw null; } }
2605         public override long ValueAsLong { get { throw null; } }
2606         public override System.Type ValueType { get { throw null; } }
2607         public virtual string XmlLang { get { throw null; } }
2608         public override System.Xml.Schema.XmlSchemaType XmlType { get { throw null; } }
AppendChild()2609         public virtual System.Xml.XmlWriter AppendChild() { throw null; }
AppendChild(string newChild)2610         public virtual void AppendChild(string newChild) { }
AppendChild(System.Xml.XmlReader newChild)2611         public virtual void AppendChild(System.Xml.XmlReader newChild) { }
AppendChild(System.Xml.XPath.XPathNavigator newChild)2612         public virtual void AppendChild(System.Xml.XPath.XPathNavigator newChild) { }
AppendChildElement(string prefix, string localName, string namespaceURI, string value)2613         public virtual void AppendChildElement(string prefix, string localName, string namespaceURI, string value) { }
CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler)2614         public virtual bool CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler) { throw null; }
Clone()2615         public abstract System.Xml.XPath.XPathNavigator Clone();
ComparePosition(System.Xml.XPath.XPathNavigator nav)2616         public virtual System.Xml.XmlNodeOrder ComparePosition(System.Xml.XPath.XPathNavigator nav) { throw null; }
Compile(string xpath)2617         public virtual System.Xml.XPath.XPathExpression Compile(string xpath) { throw null; }
CreateAttribute(string prefix, string localName, string namespaceURI, string value)2618         public virtual void CreateAttribute(string prefix, string localName, string namespaceURI, string value) { }
CreateAttributes()2619         public virtual System.Xml.XmlWriter CreateAttributes() { throw null; }
CreateNavigator()2620         public virtual System.Xml.XPath.XPathNavigator CreateNavigator() { throw null; }
DeleteRange(System.Xml.XPath.XPathNavigator lastSiblingToDelete)2621         public virtual void DeleteRange(System.Xml.XPath.XPathNavigator lastSiblingToDelete) { }
DeleteSelf()2622         public virtual void DeleteSelf() { }
Evaluate(string xpath)2623         public virtual object Evaluate(string xpath) { throw null; }
Evaluate(string xpath, System.Xml.IXmlNamespaceResolver resolver)2624         public virtual object Evaluate(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
Evaluate(System.Xml.XPath.XPathExpression expr)2625         public virtual object Evaluate(System.Xml.XPath.XPathExpression expr) { throw null; }
Evaluate(System.Xml.XPath.XPathExpression expr, System.Xml.XPath.XPathNodeIterator context)2626         public virtual object Evaluate(System.Xml.XPath.XPathExpression expr, System.Xml.XPath.XPathNodeIterator context) { throw null; }
GetAttribute(string localName, string namespaceURI)2627         public virtual string GetAttribute(string localName, string namespaceURI) { throw null; }
GetNamespace(string name)2628         public virtual string GetNamespace(string name) { throw null; }
GetNamespacesInScope(System.Xml.XmlNamespaceScope scope)2629         public virtual System.Collections.Generic.IDictionary<string, string> GetNamespacesInScope(System.Xml.XmlNamespaceScope scope) { throw null; }
InsertAfter()2630         public virtual System.Xml.XmlWriter InsertAfter() { throw null; }
InsertAfter(string newSibling)2631         public virtual void InsertAfter(string newSibling) { }
InsertAfter(System.Xml.XmlReader newSibling)2632         public virtual void InsertAfter(System.Xml.XmlReader newSibling) { }
InsertAfter(System.Xml.XPath.XPathNavigator newSibling)2633         public virtual void InsertAfter(System.Xml.XPath.XPathNavigator newSibling) { }
InsertBefore()2634         public virtual System.Xml.XmlWriter InsertBefore() { throw null; }
InsertBefore(string newSibling)2635         public virtual void InsertBefore(string newSibling) { }
InsertBefore(System.Xml.XmlReader newSibling)2636         public virtual void InsertBefore(System.Xml.XmlReader newSibling) { }
InsertBefore(System.Xml.XPath.XPathNavigator newSibling)2637         public virtual void InsertBefore(System.Xml.XPath.XPathNavigator newSibling) { }
InsertElementAfter(string prefix, string localName, string namespaceURI, string value)2638         public virtual void InsertElementAfter(string prefix, string localName, string namespaceURI, string value) { }
InsertElementBefore(string prefix, string localName, string namespaceURI, string value)2639         public virtual void InsertElementBefore(string prefix, string localName, string namespaceURI, string value) { }
IsDescendant(System.Xml.XPath.XPathNavigator nav)2640         public virtual bool IsDescendant(System.Xml.XPath.XPathNavigator nav) { throw null; }
IsSamePosition(System.Xml.XPath.XPathNavigator other)2641         public abstract bool IsSamePosition(System.Xml.XPath.XPathNavigator other);
LookupNamespace(string prefix)2642         public virtual string LookupNamespace(string prefix) { throw null; }
LookupPrefix(string namespaceURI)2643         public virtual string LookupPrefix(string namespaceURI) { throw null; }
Matches(string xpath)2644         public virtual bool Matches(string xpath) { throw null; }
Matches(System.Xml.XPath.XPathExpression expr)2645         public virtual bool Matches(System.Xml.XPath.XPathExpression expr) { throw null; }
MoveTo(System.Xml.XPath.XPathNavigator other)2646         public abstract bool MoveTo(System.Xml.XPath.XPathNavigator other);
MoveToAttribute(string localName, string namespaceURI)2647         public virtual bool MoveToAttribute(string localName, string namespaceURI) { throw null; }
MoveToChild(string localName, string namespaceURI)2648         public virtual bool MoveToChild(string localName, string namespaceURI) { throw null; }
MoveToChild(System.Xml.XPath.XPathNodeType type)2649         public virtual bool MoveToChild(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToFirst()2650         public virtual bool MoveToFirst() { throw null; }
MoveToFirstAttribute()2651         public abstract bool MoveToFirstAttribute();
MoveToFirstChild()2652         public abstract bool MoveToFirstChild();
MoveToFirstNamespace()2653         public bool MoveToFirstNamespace() { throw null; }
MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope)2654         public abstract bool MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope);
MoveToFollowing(string localName, string namespaceURI)2655         public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; }
MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathNavigator end)2656         public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathNavigator end) { throw null; }
MoveToFollowing(System.Xml.XPath.XPathNodeType type)2657         public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNavigator end)2658         public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNavigator end) { throw null; }
MoveToId(string id)2659         public abstract bool MoveToId(string id);
MoveToNamespace(string name)2660         public virtual bool MoveToNamespace(string name) { throw null; }
MoveToNext()2661         public abstract bool MoveToNext();
MoveToNext(string localName, string namespaceURI)2662         public virtual bool MoveToNext(string localName, string namespaceURI) { throw null; }
MoveToNext(System.Xml.XPath.XPathNodeType type)2663         public virtual bool MoveToNext(System.Xml.XPath.XPathNodeType type) { throw null; }
MoveToNextAttribute()2664         public abstract bool MoveToNextAttribute();
MoveToNextNamespace()2665         public bool MoveToNextNamespace() { throw null; }
MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope)2666         public abstract bool MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope namespaceScope);
MoveToParent()2667         public abstract bool MoveToParent();
MoveToPrevious()2668         public abstract bool MoveToPrevious();
MoveToRoot()2669         public virtual void MoveToRoot() { }
PrependChild()2670         public virtual System.Xml.XmlWriter PrependChild() { throw null; }
PrependChild(string newChild)2671         public virtual void PrependChild(string newChild) { }
PrependChild(System.Xml.XmlReader newChild)2672         public virtual void PrependChild(System.Xml.XmlReader newChild) { }
PrependChild(System.Xml.XPath.XPathNavigator newChild)2673         public virtual void PrependChild(System.Xml.XPath.XPathNavigator newChild) { }
PrependChildElement(string prefix, string localName, string namespaceURI, string value)2674         public virtual void PrependChildElement(string prefix, string localName, string namespaceURI, string value) { }
ReadSubtree()2675         public virtual System.Xml.XmlReader ReadSubtree() { throw null; }
ReplaceRange(System.Xml.XPath.XPathNavigator lastSiblingToReplace)2676         public virtual System.Xml.XmlWriter ReplaceRange(System.Xml.XPath.XPathNavigator lastSiblingToReplace) { throw null; }
ReplaceSelf(string newNode)2677         public virtual void ReplaceSelf(string newNode) { }
ReplaceSelf(System.Xml.XmlReader newNode)2678         public virtual void ReplaceSelf(System.Xml.XmlReader newNode) { }
ReplaceSelf(System.Xml.XPath.XPathNavigator newNode)2679         public virtual void ReplaceSelf(System.Xml.XPath.XPathNavigator newNode) { }
Select(string xpath)2680         public virtual System.Xml.XPath.XPathNodeIterator Select(string xpath) { throw null; }
Select(string xpath, System.Xml.IXmlNamespaceResolver resolver)2681         public virtual System.Xml.XPath.XPathNodeIterator Select(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
Select(System.Xml.XPath.XPathExpression expr)2682         public virtual System.Xml.XPath.XPathNodeIterator Select(System.Xml.XPath.XPathExpression expr) { throw null; }
SelectAncestors(string name, string namespaceURI, bool matchSelf)2683         public virtual System.Xml.XPath.XPathNodeIterator SelectAncestors(string name, string namespaceURI, bool matchSelf) { throw null; }
SelectAncestors(System.Xml.XPath.XPathNodeType type, bool matchSelf)2684         public virtual System.Xml.XPath.XPathNodeIterator SelectAncestors(System.Xml.XPath.XPathNodeType type, bool matchSelf) { throw null; }
SelectChildren(string name, string namespaceURI)2685         public virtual System.Xml.XPath.XPathNodeIterator SelectChildren(string name, string namespaceURI) { throw null; }
SelectChildren(System.Xml.XPath.XPathNodeType type)2686         public virtual System.Xml.XPath.XPathNodeIterator SelectChildren(System.Xml.XPath.XPathNodeType type) { throw null; }
SelectDescendants(string name, string namespaceURI, bool matchSelf)2687         public virtual System.Xml.XPath.XPathNodeIterator SelectDescendants(string name, string namespaceURI, bool matchSelf) { throw null; }
SelectDescendants(System.Xml.XPath.XPathNodeType type, bool matchSelf)2688         public virtual System.Xml.XPath.XPathNodeIterator SelectDescendants(System.Xml.XPath.XPathNodeType type, bool matchSelf) { throw null; }
SelectSingleNode(string xpath)2689         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(string xpath) { throw null; }
SelectSingleNode(string xpath, System.Xml.IXmlNamespaceResolver resolver)2690         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(string xpath, System.Xml.IXmlNamespaceResolver resolver) { throw null; }
SelectSingleNode(System.Xml.XPath.XPathExpression expression)2691         public virtual System.Xml.XPath.XPathNavigator SelectSingleNode(System.Xml.XPath.XPathExpression expression) { throw null; }
SetTypedValue(object typedValue)2692         public virtual void SetTypedValue(object typedValue) { }
SetValue(string value)2693         public virtual void SetValue(string value) { }
System.ICloneable.Clone()2694         object System.ICloneable.Clone() { throw null; }
ToString()2695         public override string ToString() { throw null; }
ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver)2696         public override object ValueAs(System.Type returnType, System.Xml.IXmlNamespaceResolver nsResolver) { throw null; }
WriteSubtree(System.Xml.XmlWriter writer)2697         public virtual void WriteSubtree(System.Xml.XmlWriter writer) { }
2698     }
2699     [System.Diagnostics.DebuggerDisplayAttribute("Position={CurrentPosition}, Current={debuggerDisplayProxy}")]
2700     public abstract partial class XPathNodeIterator : System.Collections.IEnumerable, System.ICloneable
2701     {
XPathNodeIterator()2702         protected XPathNodeIterator() { }
2703         public virtual int Count { get { throw null; } }
2704         public abstract System.Xml.XPath.XPathNavigator Current { get; }
2705         public abstract int CurrentPosition { get; }
Clone()2706         public abstract System.Xml.XPath.XPathNodeIterator Clone();
GetEnumerator()2707         public virtual System.Collections.IEnumerator GetEnumerator() { throw null; }
MoveNext()2708         public abstract bool MoveNext();
System.ICloneable.Clone()2709         object System.ICloneable.Clone() { throw null; }
2710     }
2711     public enum XPathNodeType
2712     {
2713         All = 9,
2714         Attribute = 2,
2715         Comment = 8,
2716         Element = 1,
2717         Namespace = 3,
2718         ProcessingInstruction = 7,
2719         Root = 0,
2720         SignificantWhitespace = 5,
2721         Text = 4,
2722         Whitespace = 6,
2723     }
2724     public enum XPathResultType
2725     {
2726         Any = 5,
2727         Boolean = 2,
2728         Error = 6,
2729         Navigator = 1,
2730         NodeSet = 3,
2731         Number = 0,
2732         String = 1,
2733     }
2734 }
2735 namespace System.Xml.Xsl
2736 {
2737     public partial interface IXsltContextFunction
2738     {
2739         System.Xml.XPath.XPathResultType[] ArgTypes { get; }
2740         int Maxargs { get; }
2741         int Minargs { get; }
2742         System.Xml.XPath.XPathResultType ReturnType { get; }
Invoke(System.Xml.Xsl.XsltContext xsltContext, object[] args, System.Xml.XPath.XPathNavigator docContext)2743         object Invoke(System.Xml.Xsl.XsltContext xsltContext, object[] args, System.Xml.XPath.XPathNavigator docContext);
2744     }
2745     public partial interface IXsltContextVariable
2746     {
2747         bool IsLocal { get; }
2748         bool IsParam { get; }
2749         System.Xml.XPath.XPathResultType VariableType { get; }
Evaluate(System.Xml.Xsl.XsltContext xsltContext)2750         object Evaluate(System.Xml.Xsl.XsltContext xsltContext);
2751     }
2752     public sealed partial class XslCompiledTransform
2753     {
XslCompiledTransform()2754         public XslCompiledTransform() { }
XslCompiledTransform(bool enableDebug)2755         public XslCompiledTransform(bool enableDebug) { }
2756         public System.Xml.XmlWriterSettings OutputSettings { get { throw null; } }
2757 //CODEDOM        public System.CodeDom.Compiler.TempFileCollection TemporaryFiles { get { throw null; } }
2758 //REFEMIT        public static System.CodeDom.Compiler.CompilerErrorCollection CompileToType(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver, bool debug, System.Reflection.Emit.TypeBuilder typeBuilder, string scriptAssemblyPath) { throw null; }
Load(System.Reflection.MethodInfo executeMethod, byte[] queryData, System.Type[] earlyBoundTypes)2759         public void Load(System.Reflection.MethodInfo executeMethod, byte[] queryData, System.Type[] earlyBoundTypes) { }
Load(string stylesheetUri)2760         public void Load(string stylesheetUri) { }
Load(string stylesheetUri, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)2761         public void Load(string stylesheetUri, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Load(System.Type compiledStylesheet)2762         public void Load(System.Type compiledStylesheet) { }
Load(System.Xml.XmlReader stylesheet)2763         public void Load(System.Xml.XmlReader stylesheet) { }
Load(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)2764         public void Load(System.Xml.XmlReader stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet)2765         public void Load(System.Xml.XPath.IXPathNavigable stylesheet) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver)2766         public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.Xsl.XsltSettings settings, System.Xml.XmlResolver stylesheetResolver) { }
Transform(string inputUri, string resultsFile)2767         public void Transform(string inputUri, string resultsFile) { }
Transform(string inputUri, System.Xml.XmlWriter results)2768         public void Transform(string inputUri, System.Xml.XmlWriter results) { }
Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.IO.Stream results)2769         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)2770         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)2771         public void Transform(string inputUri, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results) { }
Transform(System.Xml.XmlReader input, System.Xml.XmlWriter results)2772         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)2773         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)2774         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)2775         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)2776         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)2777         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)2778         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)2779         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)2780         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver)2781         public void Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList arguments, System.Xml.XmlWriter results, System.Xml.XmlResolver documentResolver) { }
2782     }
2783     public partial class XsltArgumentList
2784     {
XsltArgumentList()2785         public XsltArgumentList() { }
2786         public event System.Xml.Xsl.XsltMessageEncounteredEventHandler XsltMessageEncountered { add { } remove { } }
AddExtensionObject(string namespaceUri, object extension)2787         public void AddExtensionObject(string namespaceUri, object extension) { }
AddParam(string name, string namespaceUri, object parameter)2788         public void AddParam(string name, string namespaceUri, object parameter) { }
Clear()2789         public void Clear() { }
GetExtensionObject(string namespaceUri)2790         public object GetExtensionObject(string namespaceUri) { throw null; }
GetParam(string name, string namespaceUri)2791         public object GetParam(string name, string namespaceUri) { throw null; }
RemoveExtensionObject(string namespaceUri)2792         public object RemoveExtensionObject(string namespaceUri) { throw null; }
RemoveParam(string name, string namespaceUri)2793         public object RemoveParam(string name, string namespaceUri) { throw null; }
2794     }
2795     public partial class XsltCompileException : System.Xml.Xsl.XsltException
2796     {
XsltCompileException()2797         public XsltCompileException() { }
XsltCompileException(System.Exception inner, string sourceUri, int lineNumber, int linePosition)2798         public XsltCompileException(System.Exception inner, string sourceUri, int lineNumber, int linePosition) { }
XsltCompileException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2799         protected XsltCompileException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XsltCompileException(string message)2800         public XsltCompileException(string message) { }
XsltCompileException(string message, System.Exception innerException)2801         public XsltCompileException(string message, System.Exception innerException) { }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2802         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2803     }
2804     public abstract partial class XsltContext : System.Xml.XmlNamespaceManager
2805     {
XsltContext()2806         protected XsltContext() : base (default(System.Xml.XmlNameTable)) { }
XsltContext(System.Xml.NameTable table)2807         protected XsltContext(System.Xml.NameTable table) : base (default(System.Xml.XmlNameTable)) { }
2808         public abstract bool Whitespace { get; }
CompareDocument(string baseUri, string nextbaseUri)2809         public abstract int CompareDocument(string baseUri, string nextbaseUri);
PreserveWhitespace(System.Xml.XPath.XPathNavigator node)2810         public abstract bool PreserveWhitespace(System.Xml.XPath.XPathNavigator node);
ResolveFunction(string prefix, string name, System.Xml.XPath.XPathResultType[] ArgTypes)2811         public abstract System.Xml.Xsl.IXsltContextFunction ResolveFunction(string prefix, string name, System.Xml.XPath.XPathResultType[] ArgTypes);
ResolveVariable(string prefix, string name)2812         public abstract System.Xml.Xsl.IXsltContextVariable ResolveVariable(string prefix, string name);
2813     }
2814     public partial class XsltException : System.SystemException
2815     {
XsltException()2816         public XsltException() { }
XsltException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2817         protected XsltException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
XsltException(string message)2818         public XsltException(string message) { }
XsltException(string message, System.Exception innerException)2819         public XsltException(string message, System.Exception innerException) { }
2820         public virtual int LineNumber { get { throw null; } }
2821         public virtual int LinePosition { get { throw null; } }
2822         public override string Message { get { throw null; } }
2823         public virtual string SourceUri { get { throw null; } }
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)2824         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
2825     }
2826     public abstract partial class XsltMessageEncounteredEventArgs : System.EventArgs
2827     {
XsltMessageEncounteredEventArgs()2828         protected XsltMessageEncounteredEventArgs() { }
2829         public abstract string Message { get; }
2830     }
XsltMessageEncounteredEventHandler(object sender, System.Xml.Xsl.XsltMessageEncounteredEventArgs e)2831     public delegate void XsltMessageEncounteredEventHandler(object sender, System.Xml.Xsl.XsltMessageEncounteredEventArgs e);
2832     public sealed partial class XslTransform
2833     {
XslTransform()2834         public XslTransform() { }
2835         public System.Xml.XmlResolver XmlResolver { set { } }
Load(string url)2836         public void Load(string url) { }
Load(string url, System.Xml.XmlResolver resolver)2837         public void Load(string url, System.Xml.XmlResolver resolver) { }
Load(System.Xml.XmlReader stylesheet)2838         public void Load(System.Xml.XmlReader stylesheet) { }
Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver)2839         public void Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver) { }
2840 //CAS        public void Load(System.Xml.XmlReader stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet)2841         public void Load(System.Xml.XPath.IXPathNavigable stylesheet) { }
Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver)2842         public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver) { }
2843 //CAS        public void Load(System.Xml.XPath.IXPathNavigable stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Load(System.Xml.XPath.XPathNavigator stylesheet)2844         public void Load(System.Xml.XPath.XPathNavigator stylesheet) { }
Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver)2845         public void Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver) { }
2846 //CAS        public void Load(System.Xml.XPath.XPathNavigator stylesheet, System.Xml.XmlResolver resolver, System.Security.Policy.Evidence evidence) { }
Transform(string inputfile, string outputfile)2847         public void Transform(string inputfile, string outputfile) { }
Transform(string inputfile, string outputfile, System.Xml.XmlResolver resolver)2848         public void Transform(string inputfile, string outputfile, System.Xml.XmlResolver resolver) { }
Transform(System.Xml.XPath.IXPathNavigable input, System.Xml.Xsl.XsltArgumentList args)2849         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)2850         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)2851         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)2852         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)2853         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)2854         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)2855         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)2856         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)2857         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)2858         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)2859         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)2860         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)2861         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)2862         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)2863         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)2864         public void Transform(System.Xml.XPath.XPathNavigator input, System.Xml.Xsl.XsltArgumentList args, System.Xml.XmlWriter output, System.Xml.XmlResolver resolver) { }
2865     }
2866     public sealed partial class XsltSettings
2867     {
XsltSettings()2868         public XsltSettings() { }
XsltSettings(bool enableDocumentFunction, bool enableScript)2869         public XsltSettings(bool enableDocumentFunction, bool enableScript) { }
2870         public static System.Xml.Xsl.XsltSettings Default { get { throw null; } }
2871         public bool EnableDocumentFunction { get { throw null; } set { } }
2872         public bool EnableScript { get { throw null; } set { } }
2873         public static System.Xml.Xsl.XsltSettings TrustedXslt { get { throw null; } }
2874     }
2875 }
2876