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