Statistics
| Branch: | Revision:

root / trunk / packages / Hammock.1.2.6 / lib / sl4 / System.Xml.Linq.xml @ 5bcf6d70

History | View | Annotate | Download (154.3 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<doc>
3
  <assembly>
4
    <name>System.Xml.Linq</name>
5
  </assembly>
6
  <members>
7
    <member name="T:System.Xml.Linq.Extensions">
8
      <summary>Contains the LINQ to XML extension methods.</summary>
9
    </member>
10
    <member name="M:System.Xml.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})">
11
      <summary>Returns a collection of elements that contains the ancestors of every node in the source collection.</summary>
12
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the ancestors of every node in the source collection.</returns>
13
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains the source collection.</param>
14
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XNode" />.</typeparam>
15
      <exception cref="T:System.ArgumentNullException">
16
        <paramref name="source" /> is null.</exception>
17
    </member>
18
    <member name="M:System.Xml.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0},System.Xml.Linq.XName)">
19
      <summary>Returns a filtered collection of elements that contains the ancestors of every node in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
20
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the ancestors of every node in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
21
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains the source collection.</param>
22
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
23
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XNode" />.</typeparam>
24
      <exception cref="T:System.ArgumentNullException">
25
        <paramref name="source" /> is null.</exception>
26
    </member>
27
    <member name="M:System.Xml.Linq.Extensions.AncestorsAndSelf(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement})">
28
      <summary>Returns a collection of elements that contains every element in the source collection, and the ancestors of every element in the source collection.</summary>
29
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains every element in the source collection, and the ancestors of every element in the source collection.</returns>
30
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
31
      <exception cref="T:System.ArgumentNullException">
32
        <paramref name="source" /> is null.</exception>
33
    </member>
34
    <member name="M:System.Xml.Linq.Extensions.AncestorsAndSelf(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement},System.Xml.Linq.XName)">
35
      <summary>Returns a filtered collection of elements that contains every element in the source collection, and the ancestors of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
36
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains every element in the source collection, and the ancestors of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
37
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
38
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
39
      <exception cref="T:System.ArgumentNullException">
40
        <paramref name="source" /> is null.</exception>
41
    </member>
42
    <member name="M:System.Xml.Linq.Extensions.Attributes(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement})">
43
      <summary>Returns a collection of the attributes of every element in the source collection.</summary>
44
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> that contains the attributes of every element in the source collection.</returns>
45
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
46
      <exception cref="T:System.ArgumentNullException">
47
        <paramref name="source" /> is null.</exception>
48
    </member>
49
    <member name="M:System.Xml.Linq.Extensions.Attributes(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement},System.Xml.Linq.XName)">
50
      <summary>Returns a filtered collection of the attributes of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
51
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> that contains a filtered collection of the attributes of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
52
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
53
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
54
      <exception cref="T:System.ArgumentNullException">
55
        <paramref name="source" /> is null.</exception>
56
    </member>
57
    <member name="M:System.Xml.Linq.Extensions.DescendantNodes``1(System.Collections.Generic.IEnumerable{``0})">
58
      <summary>Returns a collection of the descendant nodes of every document and element in the source collection.</summary>
59
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> of the descendant nodes of every document and element in the source collection.</returns>
60
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XContainer" /> that contains the source collection.</param>
61
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
62
      <exception cref="T:System.ArgumentNullException">
63
        <paramref name="source" /> is null.</exception>
64
    </member>
65
    <member name="M:System.Xml.Linq.Extensions.DescendantNodesAndSelf(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement})">
66
      <summary>Returns a collection of nodes that contains every element in the source collection, and the descendant nodes of every element in the source collection.</summary>
67
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains every element in the source collection, and the descendant nodes of every element in the source collection.</returns>
68
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
69
      <exception cref="T:System.ArgumentNullException">
70
        <paramref name="source" /> is null.</exception>
71
    </member>
72
    <member name="M:System.Xml.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})">
73
      <summary>Returns a collection of elements that contains the descendant elements of every element and document in the source collection.</summary>
74
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the descendant elements of every element and document in the source collection.</returns>
75
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XContainer" /> that contains the source collection.</param>
76
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
77
      <exception cref="T:System.ArgumentNullException">
78
        <paramref name="source" /> is null.</exception>
79
    </member>
80
    <member name="M:System.Xml.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0},System.Xml.Linq.XName)">
81
      <summary>Returns a filtered collection of elements that contains the descendant elements of every element and document in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
82
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the descendant elements of every element and document in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
83
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XContainer" /> that contains the source collection.</param>
84
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
85
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
86
      <exception cref="T:System.ArgumentNullException">
87
        <paramref name="source" /> is null.</exception>
88
    </member>
89
    <member name="M:System.Xml.Linq.Extensions.DescendantsAndSelf(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement})">
90
      <summary>Returns a collection of elements that contains every element in the source collection, and the descendent elements of every element in the source collection.</summary>
91
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains every element in the source collection, and the descendent elements of every element in the source collection.</returns>
92
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
93
      <exception cref="T:System.ArgumentNullException">
94
        <paramref name="source" /> is null.</exception>
95
    </member>
96
    <member name="M:System.Xml.Linq.Extensions.DescendantsAndSelf(System.Collections.Generic.IEnumerable{System.Xml.Linq.XElement},System.Xml.Linq.XName)">
97
      <summary>Returns a filtered collection of elements that contains every element in the source collection, and the descendents of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
98
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains every element in the source collection, and the descendents of every element in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
99
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
100
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
101
      <exception cref="T:System.ArgumentNullException">
102
        <paramref name="source" /> is null.</exception>
103
    </member>
104
    <member name="M:System.Xml.Linq.Extensions.Elements``1(System.Collections.Generic.IEnumerable{``0})">
105
      <summary>Returns a collection of the child elements of every element and document in the source collection.</summary>
106
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the child elements of every element or document in the source collection.</returns>
107
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
108
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
109
      <exception cref="T:System.ArgumentNullException">
110
        <paramref name="source" /> is null.</exception>
111
    </member>
112
    <member name="M:System.Xml.Linq.Extensions.Elements``1(System.Collections.Generic.IEnumerable{``0},System.Xml.Linq.XName)">
113
      <summary>Returns a filtered collection of the child elements of every element and document in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
114
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the child elements of every element and document in the source collection. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
115
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains the source collection.</param>
116
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
117
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
118
      <exception cref="T:System.ArgumentNullException">
119
        <paramref name="source" /> is null.</exception>
120
    </member>
121
    <member name="M:System.Xml.Linq.Extensions.InDocumentOrder``1(System.Collections.Generic.IEnumerable{``0})">
122
      <summary>Returns a collection of nodes that contains all nodes in the source collection, sorted in document order.</summary>
123
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains all nodes in the source collection, sorted in document order.</returns>
124
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains the source collection.</param>
125
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XNode" />.</typeparam>
126
    </member>
127
    <member name="M:System.Xml.Linq.Extensions.Nodes``1(System.Collections.Generic.IEnumerable{``0})">
128
      <summary>Returns a collection of the child nodes of every document and element in the source collection.</summary>
129
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> of the child nodes of every document and element in the source collection.</returns>
130
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains the source collection.</param>
131
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XContainer" />.</typeparam>
132
      <exception cref="T:System.ArgumentNullException">
133
        <paramref name="source" /> is null.</exception>
134
    </member>
135
    <member name="M:System.Xml.Linq.Extensions.Remove(System.Collections.Generic.IEnumerable{System.Xml.Linq.XAttribute})">
136
      <summary>Removes every attribute in the source collection from its parent element.</summary>
137
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> that contains the source collection.</param>
138
      <exception cref="T:System.ArgumentNullException">
139
        <paramref name="source" /> is null.</exception>
140
    </member>
141
    <member name="M:System.Xml.Linq.Extensions.Remove``1(System.Collections.Generic.IEnumerable{``0})">
142
      <summary>Removes every node in the source collection from its parent node.</summary>
143
      <param name="source">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contains the source collection.</param>
144
      <typeparam name="T">The type of the objects in <paramref name="source" />, constrained to <see cref="T:System.Xml.Linq.XNode" />.</typeparam>
145
      <exception cref="T:System.ArgumentNullException">
146
        <paramref name="source" /> is null.</exception>
147
    </member>
148
    <member name="T:System.Xml.Linq.LoadOptions">
149
      <summary>Specifies load options when parsing XML.  </summary>
150
    </member>
151
    <member name="F:System.Xml.Linq.LoadOptions.None">
152
      <summary>Does not preserve insignificant white space or load base URI and line information.</summary>
153
    </member>
154
    <member name="F:System.Xml.Linq.LoadOptions.PreserveWhitespace">
155
      <summary>Preserves insignificant white space while parsing.</summary>
156
    </member>
157
    <member name="F:System.Xml.Linq.LoadOptions.SetBaseUri">
158
      <summary>Requests the base URI information from the <see cref="T:System.Xml.XmlReader" />, and makes it available via the <see cref="P:System.Xml.Linq.XObject.BaseUri" /> property.</summary>
159
    </member>
160
    <member name="F:System.Xml.Linq.LoadOptions.SetLineInfo">
161
      <summary>Requests the line information from the <see cref="T:System.Xml.XmlReader" /> and makes it available via properties on <see cref="T:System.Xml.Linq.XObject" />.</summary>
162
    </member>
163
    <member name="T:System.Xml.Linq.ReaderOptions">
164
      <summary>Specifies whether to omit duplicate namespaces when loading an <see cref="T:System.Xml.Linq.XDocument" /> with an <see cref="T:System.Xml.XmlReader" />.</summary>
165
    </member>
166
    <member name="F:System.Xml.Linq.ReaderOptions.None">
167
      <summary>No reader options specified.</summary>
168
    </member>
169
    <member name="F:System.Xml.Linq.ReaderOptions.OmitDuplicateNamespaces">
170
      <summary>Omit duplicate namespaces when loading the <see cref="T:System.Xml.Linq.XDocument" />.</summary>
171
    </member>
172
    <member name="T:System.Xml.Linq.SaveOptions">
173
      <summary>Specifies serialization options. </summary>
174
    </member>
175
    <member name="F:System.Xml.Linq.SaveOptions.None">
176
      <summary>Formats (indent) the XML while serializing.</summary>
177
    </member>
178
    <member name="F:System.Xml.Linq.SaveOptions.DisableFormatting">
179
      <summary>Preserves all insignificant white space while serializing.</summary>
180
    </member>
181
    <member name="F:System.Xml.Linq.SaveOptions.OmitDuplicateNamespaces">
182
      <summary>Removes duplicate namespace declarations. For the duplicate namespace declarations to be removed, both the prefix and the namespace have to match.</summary>
183
    </member>
184
    <member name="T:System.Xml.Linq.XAttribute">
185
      <summary>Represents an XML attribute.</summary>
186
    </member>
187
    <member name="M:System.Xml.Linq.XAttribute.#ctor(System.Xml.Linq.XAttribute)">
188
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XAttribute" /> class from another <see cref="T:System.Xml.Linq.XAttribute" /> object. </summary>
189
      <param name="other">An <see cref="T:System.Xml.Linq.XAttribute" /> object to copy from.</param>
190
      <exception cref="T:System.ArgumentNullException">The <paramref name="other" /> parameter is null.</exception>
191
    </member>
192
    <member name="M:System.Xml.Linq.XAttribute.#ctor(System.Xml.Linq.XName,System.Object)">
193
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XAttribute" /> class from the specified name and value. </summary>
194
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> of the attribute.</param>
195
      <param name="value">An <see cref="T:System.Object" /> containing the value of the attribute.</param>
196
      <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> or <paramref name="value" /> parameter is null.</exception>
197
    </member>
198
    <member name="P:System.Xml.Linq.XAttribute.EmptySequence">
199
      <summary>Gets an empty collection of attributes.</summary>
200
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> containing an empty collection.</returns>
201
    </member>
202
    <member name="P:System.Xml.Linq.XAttribute.IsNamespaceDeclaration">
203
      <summary>Determines if this attribute is a namespace declaration.</summary>
204
      <returns>true if this attribute is a namespace declaration; otherwise false.</returns>
205
    </member>
206
    <member name="P:System.Xml.Linq.XAttribute.Name">
207
      <summary>Gets the expanded name of this attribute.</summary>
208
      <returns>An <see cref="T:System.Xml.Linq.XName" /> containing the name of this attribute.</returns>
209
    </member>
210
    <member name="P:System.Xml.Linq.XAttribute.NextAttribute">
211
      <summary>Gets the next attribute of the parent element.</summary>
212
      <returns>An <see cref="T:System.Xml.Linq.XAttribute" /> containing the next attribute of the parent element.</returns>
213
    </member>
214
    <member name="P:System.Xml.Linq.XAttribute.NodeType">
215
      <summary>Gets the node type for this node.</summary>
216
      <returns>The node type. For <see cref="T:System.Xml.Linq.XAttribute" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Attribute" />.</returns>
217
    </member>
218
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.DateTime">
219
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.DateTime" />.</summary>
220
      <returns>A <see cref="T:System.DateTime" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
221
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.DateTime" />.</param>
222
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.DateTime" /> value.</exception>
223
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
224
    </member>
225
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.DateTime}">
226
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />.</summary>
227
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
228
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />.</param>
229
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.DateTime" /> value.</exception>
230
    </member>
231
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Decimal}">
232
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />.</summary>
233
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
234
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />.</param>
235
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Decimal" /> value.</exception>
236
    </member>
237
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Double}">
238
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />.</summary>
239
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
240
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />.</param>
241
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Double" /> value.</exception>
242
    </member>
243
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Decimal">
244
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Decimal" />.</summary>
245
      <returns>A <see cref="T:System.Decimal" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
246
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Decimal" />.</param>
247
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Decimal" /> value.</exception>
248
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
249
    </member>
250
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.DateTimeOffset">
251
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.DateTimeOffset" />.</summary>
252
      <returns>A <see cref="T:System.DateTimeOffset" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
253
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.DateTimeOffset" />.</param>
254
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.DateTimeOffset" /> value.</exception>
255
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
256
    </member>
257
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Guid">
258
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Guid" />.</summary>
259
      <returns>A <see cref="T:System.Guid" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
260
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Guid" />.</param>
261
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Guid" /> value.</exception>
262
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
263
    </member>
264
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Guid}">
265
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" />.</summary>
266
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
267
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" />.</param>
268
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Guid" /> value.</exception>
269
    </member>
270
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.TimeSpan}">
271
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" />.</summary>
272
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
273
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" />.</param>
274
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.TimeSpan" /> value.</exception>
275
    </member>
276
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.DateTimeOffset}">
277
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />.</summary>
278
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
279
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />.</param>
280
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.DateTimeOffset" /> value.</exception>
281
    </member>
282
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.TimeSpan">
283
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.TimeSpan" />.</summary>
284
      <returns>A <see cref="T:System.TimeSpan" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
285
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.TimeSpan" />.</param>
286
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.TimeSpan" /> value.</exception>
287
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
288
    </member>
289
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Double">
290
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Double" />.</summary>
291
      <returns>A <see cref="T:System.Double" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
292
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Double" />.</param>
293
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Double" /> value.</exception>
294
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
295
    </member>
296
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Int32">
297
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to an <see cref="T:System.Int32" />.</summary>
298
      <returns>A <see cref="T:System.Int32" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
299
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Int32" />.</param>
300
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Int32" /> value.</exception>
301
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
302
    </member>
303
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Int32}">
304
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />.</summary>
305
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
306
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />.</param>
307
    </member>
308
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.UInt32">
309
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.UInt32" />.</summary>
310
      <returns>A <see cref="T:System.UInt32" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
311
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.UInt32" />.</param>
312
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.UInt32" /> value.</exception>
313
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
314
    </member>
315
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.String">
316
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.String" />.</summary>
317
      <returns>A <see cref="T:System.String" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
318
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.String" />.</param>
319
    </member>
320
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Boolean">
321
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Boolean" />.</summary>
322
      <returns>A <see cref="T:System.Boolean" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
323
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Boolean" />.</param>
324
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Boolean" /> value.</exception>
325
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
326
    </member>
327
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Boolean}">
328
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />.</summary>
329
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
330
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />.</param>
331
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Boolean" /> value.</exception>
332
    </member>
333
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.UInt32}">
334
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" />.</summary>
335
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
336
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" />.</param>
337
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.UInt32" /> value.</exception>
338
    </member>
339
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.UInt64}">
340
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" />.</summary>
341
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
342
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" />.</param>
343
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.UInt64" /> value.</exception>
344
    </member>
345
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Single">
346
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Single" />.</summary>
347
      <returns>A <see cref="T:System.Single" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
348
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Single" />.</param>
349
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Single" /> value.</exception>
350
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
351
    </member>
352
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Single}">
353
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" />.</summary>
354
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
355
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" />.</param>
356
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Single" /> value.</exception>
357
    </member>
358
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Int64">
359
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to an <see cref="T:System.Int64" />.</summary>
360
      <returns>A <see cref="T:System.Int64" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
361
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.Int64" />.</param>
362
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Int64" /> value.</exception>
363
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
364
    </member>
365
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.Nullable{System.Int64}">
366
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" />.</summary>
367
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
368
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" />.</param>
369
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.Int64" /> value.</exception>
370
    </member>
371
    <member name="M:System.Xml.Linq.XAttribute.op_Explicit(System.Xml.Linq.XAttribute)~System.UInt64">
372
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.UInt64" />.</summary>
373
      <returns>A <see cref="T:System.UInt64" /> that contains the content of this <see cref="T:System.Xml.Linq.XAttribute" />.</returns>
374
      <param name="attribute">The <see cref="T:System.Xml.Linq.XAttribute" /> to cast to <see cref="T:System.UInt64" />.</param>
375
      <exception cref="T:System.FormatException">The attribute does not contain a valid <see cref="T:System.UInt64" /> value.</exception>
376
      <exception cref="T:System.ArgumentNullException">The <paramref name="attribute" /> parameter is null.</exception>
377
    </member>
378
    <member name="P:System.Xml.Linq.XAttribute.PreviousAttribute">
379
      <summary>Gets the previous attribute of the parent element.</summary>
380
      <returns>An <see cref="T:System.Xml.Linq.XAttribute" /> containing the previous attribute of the parent element.</returns>
381
    </member>
382
    <member name="M:System.Xml.Linq.XAttribute.Remove">
383
      <summary>Removes this attribute from its parent element.</summary>
384
      <exception cref="T:System.InvalidOperationException">The parent element is null.</exception>
385
    </member>
386
    <member name="M:System.Xml.Linq.XAttribute.SetValue(System.Object)">
387
      <summary>Sets the value of this attribute.</summary>
388
      <param name="value">The value to assign to this attribute.</param>
389
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
390
      <exception cref="T:System.ArgumentException">The <paramref name="value" /> is an <see cref="T:System.Xml.Linq.XObject" />.</exception>
391
    </member>
392
    <member name="M:System.Xml.Linq.XAttribute.ToString">
393
      <summary>Converts the current <see cref="T:System.Xml.Linq.XAttribute" /> object to a string representation.</summary>
394
      <returns>A <see cref="T:System.String" /> containing the XML text representation of an attribute and its value.</returns>
395
    </member>
396
    <member name="P:System.Xml.Linq.XAttribute.Value">
397
      <summary>Gets or sets the value of this attribute.</summary>
398
      <returns>A <see cref="T:System.String" /> containing the value of this attribute.</returns>
399
      <exception cref="T:System.ArgumentNullException">When setting, the <paramref name="value" /> is null.</exception>
400
    </member>
401
    <member name="T:System.Xml.Linq.XCData">
402
      <summary>Represents a text node that contains CDATA.  </summary>
403
    </member>
404
    <member name="M:System.Xml.Linq.XCData.#ctor(System.String)">
405
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XCData" /> class. </summary>
406
      <param name="value">A string that contains the value of the <see cref="T:System.Xml.Linq.XCData" /> node.</param>
407
    </member>
408
    <member name="M:System.Xml.Linq.XCData.#ctor(System.Xml.Linq.XCData)">
409
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XCData" /> class. </summary>
410
      <param name="other">The <see cref="T:System.Xml.Linq.XCData" /> node to copy from.</param>
411
    </member>
412
    <member name="P:System.Xml.Linq.XCData.NodeType">
413
      <summary>Gets the node type for this node.</summary>
414
      <returns>The node type. For <see cref="T:System.Xml.Linq.XCData" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.CDATA" />.</returns>
415
    </member>
416
    <member name="M:System.Xml.Linq.XCData.WriteTo(System.Xml.XmlWriter)">
417
      <summary>Writes this CDATA object to an <see cref="T:System.Xml.XmlWriter" />.</summary>
418
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
419
      <exception cref="T:System.ArgumentNullException">
420
        <paramref name="writer" /> is null.</exception>
421
    </member>
422
    <member name="T:System.Xml.Linq.XComment">
423
      <summary>Represents an XML comment. </summary>
424
    </member>
425
    <member name="M:System.Xml.Linq.XComment.#ctor(System.String)">
426
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XComment" /> class with the specified string content. </summary>
427
      <param name="value">A string that contains the contents of the new <see cref="T:System.Xml.Linq.XComment" /> object.</param>
428
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
429
    </member>
430
    <member name="M:System.Xml.Linq.XComment.#ctor(System.Xml.Linq.XComment)">
431
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XComment" /> class from an existing comment node. </summary>
432
      <param name="other">The <see cref="T:System.Xml.Linq.XComment" /> node to copy from.</param>
433
      <exception cref="T:System.ArgumentNullException">The <paramref name="other" /> parameter is null.</exception>
434
    </member>
435
    <member name="P:System.Xml.Linq.XComment.NodeType">
436
      <summary>Gets the node type for this node.</summary>
437
      <returns>The node type. For <see cref="T:System.Xml.Linq.XComment" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Comment" />.</returns>
438
    </member>
439
    <member name="P:System.Xml.Linq.XComment.Value">
440
      <summary>Gets or sets the string value of this comment.</summary>
441
      <returns>A <see cref="T:System.String" /> that contains the string value of this comment.</returns>
442
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> is null.</exception>
443
    </member>
444
    <member name="M:System.Xml.Linq.XComment.WriteTo(System.Xml.XmlWriter)">
445
      <summary>Write this comment to an <see cref="T:System.Xml.XmlWriter" />.</summary>
446
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
447
      <exception cref="T:System.ArgumentNullException">
448
        <paramref name="writer" /> is null.</exception>
449
    </member>
450
    <member name="T:System.Xml.Linq.XContainer">
451
      <summary>Represents a node that can contain other nodes.</summary>
452
    </member>
453
    <member name="M:System.Xml.Linq.XContainer.Add(System.Object)">
454
      <summary>Adds the specified content as children of this <see cref="T:System.Xml.Linq.XContainer" />.</summary>
455
      <param name="content">A content object containing simple content or a collection of content objects to be added.</param>
456
    </member>
457
    <member name="M:System.Xml.Linq.XContainer.Add(System.Object[])">
458
      <summary>Adds the specified content as children of this <see cref="T:System.Xml.Linq.XContainer" />.</summary>
459
      <param name="content">A parameter list of content objects.</param>
460
    </member>
461
    <member name="M:System.Xml.Linq.XContainer.AddFirst(System.Object)">
462
      <summary>Adds the specified content as the first children of this document or element.</summary>
463
      <param name="content">A content object containing simple content or a collection of content objects to be added.</param>
464
    </member>
465
    <member name="M:System.Xml.Linq.XContainer.AddFirst(System.Object[])">
466
      <summary>Adds the specified content as the first children of this document or element.</summary>
467
      <param name="content">A parameter list of content objects.</param>
468
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
469
    </member>
470
    <member name="M:System.Xml.Linq.XContainer.CreateWriter">
471
      <summary>Creates an <see cref="T:System.Xml.XmlWriter" /> that can be used to add nodes to the <see cref="T:System.Xml.Linq.XContainer" />.</summary>
472
      <returns>An <see cref="T:System.Xml.XmlWriter" /> that is ready to have content written to it.</returns>
473
    </member>
474
    <member name="M:System.Xml.Linq.XContainer.DescendantNodes">
475
      <summary>Returns a collection of the descendant nodes for this document or element, in document order.</summary>
476
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> containing the descendant nodes of the <see cref="T:System.Xml.Linq.XContainer" />, in document order.</returns>
477
    </member>
478
    <member name="M:System.Xml.Linq.XContainer.Descendants">
479
      <summary>Returns a collection of the descendant elements for this document or element, in document order.</summary>
480
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> containing the descendant elements of the <see cref="T:System.Xml.Linq.XContainer" />.</returns>
481
    </member>
482
    <member name="M:System.Xml.Linq.XContainer.Descendants(System.Xml.Linq.XName)">
483
      <summary>Returns a filtered collection of the descendant elements for this document or element, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
484
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> containing the descendant elements of the <see cref="T:System.Xml.Linq.XContainer" /> that match the specified <see cref="T:System.Xml.Linq.XName" />.</returns>
485
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
486
    </member>
487
    <member name="M:System.Xml.Linq.XContainer.Element(System.Xml.Linq.XName)">
488
      <summary>Gets the first (in document order) child element with the specified <see cref="T:System.Xml.Linq.XName" />.</summary>
489
      <returns>A <see cref="T:System.Xml.Linq.XElement" /> that matches the specified <see cref="T:System.Xml.Linq.XName" />, or null.</returns>
490
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
491
    </member>
492
    <member name="M:System.Xml.Linq.XContainer.Elements">
493
      <summary>Returns a collection of the child elements of this element or document, in document order.</summary>
494
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> containing the child elements of this <see cref="T:System.Xml.Linq.XContainer" />, in document order.</returns>
495
    </member>
496
    <member name="M:System.Xml.Linq.XContainer.Elements(System.Xml.Linq.XName)">
497
      <summary>Returns a filtered collection of the child elements of this element or document, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
498
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> containing the children of the <see cref="T:System.Xml.Linq.XContainer" /> that have a matching <see cref="T:System.Xml.Linq.XName" />, in document order.</returns>
499
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
500
    </member>
501
    <member name="P:System.Xml.Linq.XContainer.FirstNode">
502
      <summary>Get the first child node of this node.</summary>
503
      <returns>An <see cref="T:System.Xml.Linq.XNode" /> containing the first child node of the <see cref="T:System.Xml.Linq.XContainer" />.</returns>
504
    </member>
505
    <member name="P:System.Xml.Linq.XContainer.LastNode">
506
      <summary>Get the last child node of this node.</summary>
507
      <returns>An <see cref="T:System.Xml.Linq.XNode" /> containing the last child node of the <see cref="T:System.Xml.Linq.XContainer" />.</returns>
508
    </member>
509
    <member name="M:System.Xml.Linq.XContainer.Nodes">
510
      <summary>Returns a collection of the child nodes of this element or document, in document order.</summary>
511
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> containing the contents of this <see cref="T:System.Xml.Linq.XContainer" />, in document order.</returns>
512
    </member>
513
    <member name="M:System.Xml.Linq.XContainer.RemoveNodes">
514
      <summary>Removes the child nodes from this document or element.</summary>
515
    </member>
516
    <member name="M:System.Xml.Linq.XContainer.ReplaceNodes(System.Object)">
517
      <summary>Replaces the children nodes of this document or element with the specified content.</summary>
518
      <param name="content">A content object containing simple content or a collection of content objects that replace the children nodes.</param>
519
    </member>
520
    <member name="M:System.Xml.Linq.XContainer.ReplaceNodes(System.Object[])">
521
      <summary>Replaces the children nodes of this document or element with the specified content.</summary>
522
      <param name="content">A parameter list of content objects.</param>
523
    </member>
524
    <member name="T:System.Xml.Linq.XDeclaration">
525
      <summary>Represents an XML declaration. </summary>
526
    </member>
527
    <member name="M:System.Xml.Linq.XDeclaration.#ctor(System.String,System.String,System.String)">
528
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDeclaration" /> class with the specified version, encoding, and standalone status.</summary>
529
      <param name="version">The version of the XML, usually "1.0".</param>
530
      <param name="encoding">The encoding for the XML document.</param>
531
      <param name="standalone">A string containing "yes" or "no" that specifies whether the XML is standalone or requires external entities to be resolved.</param>
532
    </member>
533
    <member name="M:System.Xml.Linq.XDeclaration.#ctor(System.Xml.Linq.XDeclaration)">
534
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDeclaration" /> class from another <see cref="T:System.Xml.Linq.XDeclaration" /> object. </summary>
535
      <param name="other">The <see cref="T:System.Xml.Linq.XDeclaration" /> used to initialize this <see cref="T:System.Xml.Linq.XDeclaration" /> object.</param>
536
      <exception cref="T:System.ArgumentNullException">
537
        <paramref name="other" /> is null.</exception>
538
    </member>
539
    <member name="P:System.Xml.Linq.XDeclaration.Encoding">
540
      <summary>Gets or sets the encoding for this document.</summary>
541
      <returns>A <see cref="T:System.String" /> containing the code page name for this document.</returns>
542
    </member>
543
    <member name="P:System.Xml.Linq.XDeclaration.Standalone">
544
      <summary>Gets or sets the standalone property for this document.</summary>
545
      <returns>A <see cref="T:System.String" /> containing the standalone property for this document.</returns>
546
    </member>
547
    <member name="M:System.Xml.Linq.XDeclaration.ToString">
548
      <summary>Provides the declaration as a formatted string.</summary>
549
      <returns>A <see cref="T:System.String" /> that contains the formatted XML string.</returns>
550
    </member>
551
    <member name="P:System.Xml.Linq.XDeclaration.Version">
552
      <summary>Gets or sets the version property for this document.</summary>
553
      <returns>A <see cref="T:System.String" /> containing the version property for this document.</returns>
554
    </member>
555
    <member name="T:System.Xml.Linq.XDocument">
556
      <summary>Represents an XML document. </summary>
557
    </member>
558
    <member name="M:System.Xml.Linq.XDocument.#ctor">
559
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDocument" /> class. </summary>
560
    </member>
561
    <member name="M:System.Xml.Linq.XDocument.#ctor(System.Object[])">
562
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDocument" /> class with the specified content.</summary>
563
      <param name="content">A parameter list of content objects to add to this document.</param>
564
    </member>
565
    <member name="M:System.Xml.Linq.XDocument.#ctor(System.Xml.Linq.XDeclaration,System.Object[])">
566
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDocument" /> class with the specified <see cref="T:System.Xml.Linq.XDeclaration" /> and content.</summary>
567
      <param name="declaration">An <see cref="T:System.Xml.Linq.XDeclaration" /> for the document.</param>
568
      <param name="content">The content of the document.</param>
569
    </member>
570
    <member name="M:System.Xml.Linq.XDocument.#ctor(System.Xml.Linq.XDocument)">
571
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XDocument" /> class from an existing <see cref="T:System.Xml.Linq.XDocument" /> object.</summary>
572
      <param name="other">The <see cref="T:System.Xml.Linq.XDocument" /> object that will be copied.</param>
573
    </member>
574
    <member name="P:System.Xml.Linq.XDocument.Declaration">
575
      <summary>Gets or sets the XML declaration for this document.</summary>
576
      <returns>An <see cref="T:System.Xml.Linq.XDeclaration" /> that contains the XML declaration for this document.</returns>
577
    </member>
578
    <member name="P:System.Xml.Linq.XDocument.DocumentType">
579
      <summary>Gets the Document Type Definition (DTD) for this document.</summary>
580
      <returns>A <see cref="T:System.Xml.Linq.XDocumentType" /> that contains the DTD for this document.</returns>
581
    </member>
582
    <member name="M:System.Xml.Linq.XDocument.Load(System.IO.Stream)">
583
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> instance using the specified stream.</summary>
584
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> object used to read the data contained in the stream. </returns>
585
      <param name="stream">The stream containing the XML data.</param>
586
    </member>
587
    <member name="M:System.Xml.Linq.XDocument.Load(System.IO.Stream,System.Xml.Linq.LoadOptions)">
588
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> instance using the specified stream, optionally preserving white space, setting the base URI, and retaining line information.</summary>
589
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> object used to read the data contained in the stream.</returns>
590
      <param name="stream">The stream containing the XML data.</param>
591
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies whether to load base URI and line information.</param>
592
    </member>
593
    <member name="M:System.Xml.Linq.XDocument.Load(System.IO.TextReader)">
594
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a <see cref="T:System.IO.TextReader" />. </summary>
595
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the contents of the specified <see cref="T:System.IO.TextReader" />.</returns>
596
      <param name="textReader">A <see cref="T:System.IO.TextReader" /> that contains the content for the <see cref="T:System.Xml.Linq.XDocument" />.</param>
597
    </member>
598
    <member name="M:System.Xml.Linq.XDocument.Load(System.IO.TextReader,System.Xml.Linq.LoadOptions)">
599
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a <see cref="T:System.IO.TextReader" />, optionally preserving white space, setting the base URI, and retaining line information.</summary>
600
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the XML that was read from the specified <see cref="T:System.IO.TextReader" />.</returns>
601
      <param name="textReader">A <see cref="T:System.IO.TextReader" /> that contains the content for the <see cref="T:System.Xml.Linq.XDocument" />.</param>
602
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
603
    </member>
604
    <member name="M:System.Xml.Linq.XDocument.Load(System.String)">
605
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a file located in the application's XAP package.</summary>
606
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the contents of the specified file.</returns>
607
      <param name="uri">A URI string that references the file to be loaded into a new <see cref="T:System.Xml.Linq.XDocument" />. This file is located in the application's XAP package. If you want to download a file from some other location, follow the steps described in How to: Load an XML File from an Arbitrary URI Location with LINQ to XML.</param>
608
    </member>
609
    <member name="M:System.Xml.Linq.XDocument.Load(System.String,System.Xml.Linq.LoadOptions)">
610
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a file located in the application's XAP package, optionally preserving white space, setting the base URI, and retaining line information.</summary>
611
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the contents of the specified file.</returns>
612
      <param name="uri">A URI string that references the file to be loaded into a new <see cref="T:System.Xml.Linq.XDocument" />. This file is located in the application's XAP package. If you want to download a file from some other location, follow the steps described in How to: Load an XML File from an Arbitrary URI Location with LINQ to XML.</param>
613
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies how white space is handled and whether to load base URI and line information.</param>
614
    </member>
615
    <member name="M:System.Xml.Linq.XDocument.Load(System.Xml.XmlReader)">
616
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from an <see cref="T:System.Xml.XmlReader" />. </summary>
617
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the contents of the specified <see cref="T:System.Xml.XmlReader" />.</returns>
618
      <param name="reader">A <see cref="T:System.Xml.XmlReader" /> that contains the content for the <see cref="T:System.Xml.Linq.XDocument" />.</param>
619
    </member>
620
    <member name="M:System.Xml.Linq.XDocument.Load(System.Xml.XmlReader,System.Xml.Linq.LoadOptions)">
621
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from an <see cref="T:System.Xml.XmlReader" />, optionally setting the base URI, and retaining line information.</summary>
622
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> that contains the XML that was read from the specified <see cref="T:System.Xml.XmlReader" />.</returns>
623
      <param name="reader">A <see cref="T:System.Xml.XmlReader" /> that will be read for the content of the <see cref="T:System.Xml.Linq.XDocument" />.</param>
624
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies whether to load base URI and line information.</param>
625
    </member>
626
    <member name="P:System.Xml.Linq.XDocument.NodeType">
627
      <summary>Gets the node type for this node.</summary>
628
      <returns>The node type. For <see cref="T:System.Xml.Linq.XDocument" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Document" />.</returns>
629
    </member>
630
    <member name="M:System.Xml.Linq.XDocument.Parse(System.String)">
631
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a string.</summary>
632
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> populated from the string that contains XML.</returns>
633
      <param name="text">A string that contains XML.</param>
634
    </member>
635
    <member name="M:System.Xml.Linq.XDocument.Parse(System.String,System.Xml.Linq.LoadOptions)">
636
      <summary>Creates a new <see cref="T:System.Xml.Linq.XDocument" /> from a string, optionally preserving white space, setting the base URI, and retaining line information.</summary>
637
      <returns>An <see cref="T:System.Xml.Linq.XDocument" /> populated from the string that contains XML.</returns>
638
      <param name="text">A string that contains XML.</param>
639
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
640
    </member>
641
    <member name="P:System.Xml.Linq.XDocument.Root">
642
      <summary>Gets the root element of the XML Tree for this document.</summary>
643
      <returns>The root <see cref="T:System.Xml.Linq.XElement" /> of the XML tree.</returns>
644
    </member>
645
    <member name="M:System.Xml.Linq.XDocument.Save(System.IO.Stream)">
646
      <summary>Outputs this <see cref="T:System.Xml.Linq.XDocument" /> to the specified <see cref="T:System.IO.Stream" />.</summary>
647
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XDocument" /> to.</param>
648
    </member>
649
    <member name="M:System.Xml.Linq.XDocument.Save(System.IO.Stream,System.Xml.Linq.SaveOptions)">
650
      <summary>Outputs this <see cref="T:System.Xml.Linq.XDocument" /> to the specified <see cref="T:System.IO.Stream" />, optionally specifying formatting behavior.</summary>
651
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XDocument" /> to.</param>
652
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
653
    </member>
654
    <member name="M:System.Xml.Linq.XDocument.Save(System.IO.TextWriter)">
655
      <summary>Serialize this <see cref="T:System.Xml.Linq.XDocument" /> to a <see cref="T:System.IO.TextWriter" />.</summary>
656
      <param name="textWriter">A <see cref="T:System.IO.TextWriter" /> that the <see cref="T:System.Xml.Linq.XDocument" /> will be written to.</param>
657
    </member>
658
    <member name="M:System.Xml.Linq.XDocument.Save(System.IO.TextWriter,System.Xml.Linq.SaveOptions)">
659
      <summary>Serialize this <see cref="T:System.Xml.Linq.XDocument" /> to a <see cref="T:System.IO.TextWriter" />, optionally disabling formatting.</summary>
660
      <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> to output the XML to.</param>
661
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
662
    </member>
663
    <member name="M:System.Xml.Linq.XDocument.Save(System.Xml.XmlWriter)">
664
      <summary>Serialize this <see cref="T:System.Xml.Linq.XDocument" /> to an <see cref="T:System.Xml.XmlWriter" />.</summary>
665
      <param name="writer">A <see cref="T:System.Xml.XmlWriter" /> that the <see cref="T:System.Xml.Linq.XDocument" /> will be written to.</param>
666
    </member>
667
    <member name="M:System.Xml.Linq.XDocument.WriteTo(System.Xml.XmlWriter)">
668
      <summary>Write this document to an <see cref="T:System.Xml.XmlWriter" />.</summary>
669
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
670
    </member>
671
    <member name="T:System.Xml.Linq.XDocumentType">
672
      <summary>Represents an XML Document Type Definition (DTD).  </summary>
673
    </member>
674
    <member name="M:System.Xml.Linq.XDocumentType.#ctor(System.String,System.String,System.String,System.String)">
675
      <summary>Initializes an instance of the <see cref="T:System.Xml.Linq.XDocumentType" /> class. </summary>
676
      <param name="name">A <see cref="T:System.String" /> that contains the qualified name of the DTD, which is the same as the qualified name of the root element of the XML document.</param>
677
      <param name="publicId">A <see cref="T:System.String" /> that contains the public identifier of an external public DTD.</param>
678
      <param name="systemId">A <see cref="T:System.String" /> that contains the system identifier of an external private DTD.</param>
679
      <param name="internalSubset">A <see cref="T:System.String" /> that contains the internal subset for an internal DTD.</param>
680
    </member>
681
    <member name="M:System.Xml.Linq.XDocumentType.#ctor(System.Xml.Linq.XDocumentType)">
682
      <summary>Initializes an instance of the <see cref="T:System.Xml.Linq.XDocumentType" /> class from another <see cref="T:System.Xml.Linq.XDocumentType" /> object.</summary>
683
      <param name="other">An <see cref="T:System.Xml.Linq.XDocumentType" /> object to copy from.</param>
684
    </member>
685
    <member name="P:System.Xml.Linq.XDocumentType.InternalSubset">
686
      <summary>Gets or sets the internal subset for this Document Type Definition (DTD).</summary>
687
      <returns>A <see cref="T:System.String" /> that contains the internal subset for this Document Type Definition (DTD).</returns>
688
    </member>
689
    <member name="P:System.Xml.Linq.XDocumentType.Name">
690
      <summary>Gets or sets the name for this Document Type Definition (DTD).</summary>
691
      <returns>A <see cref="T:System.String" /> that contains the name for this Document Type Definition (DTD).</returns>
692
    </member>
693
    <member name="P:System.Xml.Linq.XDocumentType.NodeType">
694
      <summary>Gets the node type for this node.</summary>
695
      <returns>The node type. For <see cref="T:System.Xml.Linq.XDocumentType" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.DocumentType" />.</returns>
696
    </member>
697
    <member name="P:System.Xml.Linq.XDocumentType.PublicId">
698
      <summary>Gets or sets the public identifier for this Document Type Definition (DTD).</summary>
699
      <returns>A <see cref="T:System.String" /> that contains the public identifier for this Document Type Definition (DTD).</returns>
700
    </member>
701
    <member name="P:System.Xml.Linq.XDocumentType.SystemId">
702
      <summary>Gets or sets the system identifier for this Document Type Definition (DTD).</summary>
703
      <returns>A <see cref="T:System.String" /> that contains the system identifier for this Document Type Definition (DTD).</returns>
704
    </member>
705
    <member name="M:System.Xml.Linq.XDocumentType.WriteTo(System.Xml.XmlWriter)">
706
      <summary>Write this <see cref="T:System.Xml.Linq.XDocumentType" /> to an <see cref="T:System.Xml.XmlWriter" />.</summary>
707
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
708
    </member>
709
    <member name="T:System.Xml.Linq.XElement">
710
      <summary>Represents an XML element.</summary>
711
    </member>
712
    <member name="M:System.Xml.Linq.XElement.#ctor(System.Xml.Linq.XElement)">
713
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class from another <see cref="T:System.Xml.Linq.XElement" /> object.</summary>
714
      <param name="other">An <see cref="T:System.Xml.Linq.XElement" /> object to copy from.</param>
715
    </member>
716
    <member name="M:System.Xml.Linq.XElement.#ctor(System.Xml.Linq.XName)">
717
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class with the specified name. </summary>
718
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the name of the element.</param>
719
    </member>
720
    <member name="M:System.Xml.Linq.XElement.#ctor(System.Xml.Linq.XName,System.Object)">
721
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class with the specified name and content.</summary>
722
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the element name.</param>
723
      <param name="content">The contents of the element.</param>
724
    </member>
725
    <member name="M:System.Xml.Linq.XElement.#ctor(System.Xml.Linq.XName,System.Object[])">
726
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class with the specified name and content.</summary>
727
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the element name.</param>
728
      <param name="content">The initial content of the element.</param>
729
    </member>
730
    <member name="M:System.Xml.Linq.XElement.#ctor(System.Xml.Linq.XStreamingElement)">
731
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class from an <see cref="T:System.Xml.Linq.XStreamingElement" /> object.</summary>
732
      <param name="other">An <see cref="T:System.Xml.Linq.XStreamingElement" /> that contains unevaluated queries that will be iterated for the contents of this <see cref="T:System.Xml.Linq.XElement" />.</param>
733
    </member>
734
    <member name="M:System.Xml.Linq.XElement.AncestorsAndSelf">
735
      <summary>Returns a collection of elements that contain this element, and the ancestors of this element. </summary>
736
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of elements that contain this element, and the ancestors of this element. </returns>
737
    </member>
738
    <member name="M:System.Xml.Linq.XElement.AncestorsAndSelf(System.Xml.Linq.XName)">
739
      <summary>Returns a filtered collection of elements that contain this element, and the ancestors of this element. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
740
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contain this element, and the ancestors of this element. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
741
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
742
    </member>
743
    <member name="M:System.Xml.Linq.XElement.Attribute(System.Xml.Linq.XName)">
744
      <summary>Returns the <see cref="T:System.Xml.Linq.XAttribute" /> of this <see cref="T:System.Xml.Linq.XElement" /> that has the specified <see cref="T:System.Xml.Linq.XName" />.</summary>
745
      <returns>An <see cref="T:System.Xml.Linq.XAttribute" /> that has the specified <see cref="T:System.Xml.Linq.XName" />; null if there is no attribute with the specified name.</returns>
746
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> of the <see cref="T:System.Xml.Linq.XAttribute" /> to get.</param>
747
    </member>
748
    <member name="M:System.Xml.Linq.XElement.Attributes">
749
      <summary>Returns a collection of attributes of this element.</summary>
750
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> of attributes of this element.</returns>
751
    </member>
752
    <member name="M:System.Xml.Linq.XElement.Attributes(System.Xml.Linq.XName)">
753
      <summary>Returns a filtered collection of attributes of this element. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
754
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XAttribute" /> that contains the attributes of this element. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
755
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
756
    </member>
757
    <member name="M:System.Xml.Linq.XElement.DescendantNodesAndSelf">
758
      <summary>Returns a collection of nodes that contain this element, and all descendant nodes of this element, in document order.</summary>
759
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> that contain this element, and all descendant nodes of this element, in document order.</returns>
760
    </member>
761
    <member name="M:System.Xml.Linq.XElement.DescendantsAndSelf">
762
      <summary>Returns a collection of elements that contain this element, and all descendant elements of this element, in document order.</summary>
763
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of elements that contain this element, and all descendant elements of this element, in document order.</returns>
764
    </member>
765
    <member name="M:System.Xml.Linq.XElement.DescendantsAndSelf(System.Xml.Linq.XName)">
766
      <summary>Returns a filtered collection of elements that contain this element, and all descendant elements of this element, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
767
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contain this element, and all descendant elements of this element, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
768
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
769
    </member>
770
    <member name="P:System.Xml.Linq.XElement.EmptySequence">
771
      <summary>Gets an empty collection of elements.</summary>
772
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> that contains an empty collection.</returns>
773
    </member>
774
    <member name="P:System.Xml.Linq.XElement.FirstAttribute">
775
      <summary>Gets the first attribute of this element.</summary>
776
      <returns>An <see cref="T:System.Xml.Linq.XAttribute" /> that contains the first attribute of this element.</returns>
777
    </member>
778
    <member name="M:System.Xml.Linq.XElement.GetDefaultNamespace">
779
      <summary>Gets the default <see cref="T:System.Xml.Linq.XNamespace" /> of this <see cref="T:System.Xml.Linq.XElement" />.</summary>
780
      <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> that contains the default namespace of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
781
    </member>
782
    <member name="M:System.Xml.Linq.XElement.GetNamespaceOfPrefix(System.String)">
783
      <summary>Gets the namespace associated with a particular prefix for this <see cref="T:System.Xml.Linq.XElement" />.</summary>
784
      <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> for the namespace associated with the prefix for this <see cref="T:System.Xml.Linq.XElement" />.</returns>
785
      <param name="prefix">A string that contains the namespace prefix to look up.</param>
786
    </member>
787
    <member name="M:System.Xml.Linq.XElement.GetPrefixOfNamespace(System.Xml.Linq.XNamespace)">
788
      <summary>Gets the prefix associated with a namespace for this <see cref="T:System.Xml.Linq.XElement" />.</summary>
789
      <returns>A <see cref="T:System.String" /> that contains the namespace prefix.</returns>
790
      <param name="ns">An <see cref="T:System.Xml.Linq.XNamespace" /> to look up.</param>
791
    </member>
792
    <member name="P:System.Xml.Linq.XElement.HasAttributes">
793
      <summary>Gets a value indicating whether this element as at least one attribute.</summary>
794
      <returns>true if this element has at least one attribute; otherwise false.</returns>
795
    </member>
796
    <member name="P:System.Xml.Linq.XElement.HasElements">
797
      <summary>Gets a value indicating whether this element has at least one child element.</summary>
798
      <returns>true if this element has at least one child element; otherwise false.</returns>
799
    </member>
800
    <member name="P:System.Xml.Linq.XElement.IsEmpty">
801
      <summary>Gets a value indicating whether this element contains no content.</summary>
802
      <returns>true if this element contains no content; otherwise false.</returns>
803
    </member>
804
    <member name="P:System.Xml.Linq.XElement.LastAttribute">
805
      <summary>Gets the last attribute of this element.</summary>
806
      <returns>An <see cref="T:System.Xml.Linq.XAttribute" /> that contains the last attribute of this element.</returns>
807
    </member>
808
    <member name="M:System.Xml.Linq.XElement.Load(System.IO.Stream)">
809
      <summary>Creates a new <see cref="T:System.Xml.Linq.XElement" /> instance using the specified stream.</summary>
810
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> object used to read the data contained in the stream.</returns>
811
      <param name="stream">The stream containing the XML data.</param>
812
    </member>
813
    <member name="M:System.Xml.Linq.XElement.Load(System.IO.Stream,System.Xml.Linq.LoadOptions)">
814
      <summary>Creates a new <see cref="T:System.Xml.Linq.XElement" /> instance using the specified stream, optionally preserving white space, setting the base URI, and retaining line information.</summary>
815
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> object used to read the data contained in the stream.</returns>
816
      <param name="stream">The stream containing the XML data.</param>
817
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies whether to load base URI and line information.</param>
818
    </member>
819
    <member name="M:System.Xml.Linq.XElement.Load(System.IO.TextReader)">
820
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from a <see cref="T:System.IO.TextReader" />. </summary>
821
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the XML that was read from the specified <see cref="T:System.IO.TextReader" />.</returns>
822
      <param name="textReader">A <see cref="T:System.IO.TextReader" /> that will be read for the <see cref="T:System.Xml.Linq.XElement" /> content.</param>
823
    </member>
824
    <member name="M:System.Xml.Linq.XElement.Load(System.IO.TextReader,System.Xml.Linq.LoadOptions)">
825
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from a <see cref="T:System.IO.TextReader" />, optionally preserving white space and retaining line information. </summary>
826
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the XML that was read from the specified <see cref="T:System.IO.TextReader" />.</returns>
827
      <param name="textReader">A <see cref="T:System.IO.TextReader" /> that will be read for the <see cref="T:System.Xml.Linq.XElement" /> content.</param>
828
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
829
    </member>
830
    <member name="M:System.Xml.Linq.XElement.Load(System.String)">
831
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from a file located in the applications' XAP package.</summary>
832
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the contents of the specified file.</returns>
833
      <param name="uri">A URI string that references the file to be loaded into a new <see cref="T:System.Xml.Linq.XElement" />. This file is located in the application's XAP package. If you want to download a file from some other location, follow the steps described in How to: Load an XML File from an Arbitrary URI Location with LINQ to XML.</param>
834
    </member>
835
    <member name="M:System.Xml.Linq.XElement.Load(System.String,System.Xml.Linq.LoadOptions)">
836
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from a file located in the application's XAP package, optionally preserving white space, setting the base URI, and retaining line information.</summary>
837
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the contents of the specified file.</returns>
838
      <param name="uri">A URI string that references the file to be loaded into a new <see cref="T:System.Xml.Linq.XElement" />. This file is located in the application's XAP package. If you want to download a file from some other location, follow the steps described in How to: Load an XML File from an Arbitrary URI Location with LINQ to XML.</param>
839
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
840
    </member>
841
    <member name="M:System.Xml.Linq.XElement.Load(System.Xml.XmlReader)">
842
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from an <see cref="T:System.Xml.XmlReader" />. </summary>
843
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the XML that was read from the specified <see cref="T:System.Xml.XmlReader" />.</returns>
844
      <param name="reader">A <see cref="T:System.Xml.XmlReader" /> that will be read for the content of the <see cref="T:System.Xml.Linq.XElement" />.</param>
845
    </member>
846
    <member name="M:System.Xml.Linq.XElement.Load(System.Xml.XmlReader,System.Xml.Linq.LoadOptions)">
847
      <summary>Loads an <see cref="T:System.Xml.Linq.XElement" /> from an <see cref="T:System.Xml.XmlReader" />, optionally preserving white space, setting the base URI, and retaining line information.</summary>
848
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> that contains the XML that was read from the specified <see cref="T:System.Xml.XmlReader" />.</returns>
849
      <param name="reader">A <see cref="T:System.Xml.XmlReader" /> that will be read for the content of the <see cref="T:System.Xml.Linq.XElement" />.</param>
850
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
851
    </member>
852
    <member name="P:System.Xml.Linq.XElement.Name">
853
      <summary>Gets the name of this element.</summary>
854
      <returns>An <see cref="T:System.Xml.Linq.XName" /> that contains the name of this element.</returns>
855
    </member>
856
    <member name="P:System.Xml.Linq.XElement.NodeType">
857
      <summary>Gets the node type for this node.</summary>
858
      <returns>The node type. For <see cref="T:System.Xml.Linq.XElement" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Element" />.</returns>
859
    </member>
860
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.DateTime">
861
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.DateTime" />.</summary>
862
      <returns>A <see cref="T:System.DateTime" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
863
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.DateTime" />.</param>
864
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.DateTime" /> value.</exception>
865
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
866
    </member>
867
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Decimal">
868
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Decimal" />.</summary>
869
      <returns>A <see cref="T:System.Decimal" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
870
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Decimal" />.</param>
871
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Decimal" /> value.</exception>
872
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
873
    </member>
874
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Decimal}">
875
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />.</summary>
876
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
877
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />.</param>
878
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Decimal" /> value.</exception>
879
    </member>
880
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Single}">
881
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" />.</summary>
882
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
883
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Single" />.</param>
884
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Single" /> value.</exception>
885
    </member>
886
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.TimeSpan">
887
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.TimeSpan" />.</summary>
888
      <returns>A <see cref="T:System.TimeSpan" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
889
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.TimeSpan" />.</param>
890
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.TimeSpan" /> value.</exception>
891
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
892
    </member>
893
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Double}">
894
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />.</summary>
895
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
896
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />.</param>
897
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Double" /> value.</exception>
898
    </member>
899
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Double">
900
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Double" />.</summary>
901
      <returns>A <see cref="T:System.Double" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
902
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Double" />.</param>
903
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Double" /> value.</exception>
904
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
905
    </member>
906
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Single">
907
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Single" />.</summary>
908
      <returns>A <see cref="T:System.Single" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
909
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Single" />.</param>
910
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Single" /> value.</exception>
911
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
912
    </member>
913
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Guid">
914
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Guid" />.</summary>
915
      <returns>A <see cref="T:System.Guid" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
916
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Guid" />.</param>
917
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Guid" /> value.</exception>
918
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
919
    </member>
920
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Guid}">
921
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" />.</summary>
922
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
923
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Guid" />.</param>
924
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Guid" /> value.</exception>
925
    </member>
926
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.TimeSpan}">
927
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" />.</summary>
928
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
929
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.TimeSpan" />.</param>
930
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.TimeSpan" /> value.</exception>
931
    </member>
932
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.DateTime}">
933
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />.</summary>
934
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
935
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />.</param>
936
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.DateTime" /> value.</exception>
937
    </member>
938
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.DateTimeOffset">
939
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XAttribute" /> to a <see cref="T:System.DateTimeOffset" />.</summary>
940
      <returns>A <see cref="T:System.DateTimeOffset" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
941
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.DateTimeOffset" />.</param>
942
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.DateTimeOffset" /> value.</exception>
943
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
944
    </member>
945
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.DateTimeOffset}">
946
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />.</summary>
947
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
948
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to an <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />.</param>
949
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.DateTimeOffset" /> value.</exception>
950
    </member>
951
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Int32">
952
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to an <see cref="T:System.Int32" />.</summary>
953
      <returns>A <see cref="T:System.Int32" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
954
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Int32" />.</param>
955
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Int32" /> value.</exception>
956
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
957
    </member>
958
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Int32}">
959
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />.</summary>
960
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
961
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />.</param>
962
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Int32" /> value.</exception>
963
    </member>
964
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Boolean}">
965
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />.</summary>
966
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
967
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />.</param>
968
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Boolean" /> value.</exception>
969
    </member>
970
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.String">
971
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.String" />.</summary>
972
      <returns>A <see cref="T:System.String" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
973
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.String" />.</param>
974
    </member>
975
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Boolean">
976
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Boolean" />.</summary>
977
      <returns>A <see cref="T:System.Boolean" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
978
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Boolean" />.</param>
979
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Boolean" /> value.</exception>
980
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
981
    </member>
982
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.UInt32">
983
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.UInt32" />.</summary>
984
      <returns>A <see cref="T:System.UInt32" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
985
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.UInt32" />.</param>
986
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.UInt32" /> value.</exception>
987
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
988
    </member>
989
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.UInt64">
990
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.UInt64" />.</summary>
991
      <returns>A <see cref="T:System.UInt64" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
992
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.UInt64" />.</param>
993
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.UInt64" /> value.</exception>
994
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
995
    </member>
996
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.UInt64}">
997
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" />.</summary>
998
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
999
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt64" />.</param>
1000
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.UInt64" /> value.</exception>
1001
    </member>
1002
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.Int64}">
1003
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" />.</summary>
1004
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
1005
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int64" />.</param>
1006
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Int64" /> value.</exception>
1007
    </member>
1008
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Nullable{System.UInt32}">
1009
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to a <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" />.</summary>
1010
      <returns>A <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
1011
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Nullable`1" /> of <see cref="T:System.UInt32" />.</param>
1012
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.UInt32" /> value.</exception>
1013
    </member>
1014
    <member name="M:System.Xml.Linq.XElement.op_Explicit(System.Xml.Linq.XElement)~System.Int64">
1015
      <summary>Cast the value of this <see cref="T:System.Xml.Linq.XElement" /> to an <see cref="T:System.Int64" />.</summary>
1016
      <returns>A <see cref="T:System.Int64" /> that contains the content of this <see cref="T:System.Xml.Linq.XElement" />.</returns>
1017
      <param name="element">The <see cref="T:System.Xml.Linq.XElement" /> to cast to <see cref="T:System.Int64" />.</param>
1018
      <exception cref="T:System.FormatException">The element does not contain a valid <see cref="T:System.Int64" /> value.</exception>
1019
      <exception cref="T:System.ArgumentNullException">The <paramref name="element" /> parameter is null.</exception>
1020
    </member>
1021
    <member name="M:System.Xml.Linq.XElement.Parse(System.String)">
1022
      <summary>Load an <see cref="T:System.Xml.Linq.XElement" /> from a string that contains XML.</summary>
1023
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> populated from the string that contains XML.</returns>
1024
      <param name="text">A <see cref="T:System.String" /> that contains XML.</param>
1025
    </member>
1026
    <member name="M:System.Xml.Linq.XElement.Parse(System.String,System.Xml.Linq.LoadOptions)">
1027
      <summary>Load an <see cref="T:System.Xml.Linq.XElement" /> from a string that contains XML, optionally preserving white space and retaining line information.</summary>
1028
      <returns>An <see cref="T:System.Xml.Linq.XElement" /> populated from the string that contains XML.</returns>
1029
      <param name="text">A <see cref="T:System.String" /> that contains XML.</param>
1030
      <param name="options">A <see cref="T:System.Xml.Linq.LoadOptions" /> that specifies white space behavior, and whether to load base URI and line information.</param>
1031
    </member>
1032
    <member name="M:System.Xml.Linq.XElement.RemoveAll">
1033
      <summary>Removes nodes and attributes from this <see cref="T:System.Xml.Linq.XElement" />.</summary>
1034
    </member>
1035
    <member name="M:System.Xml.Linq.XElement.RemoveAttributes">
1036
      <summary>Removes the attributes of this <see cref="T:System.Xml.Linq.XElement" />.</summary>
1037
    </member>
1038
    <member name="M:System.Xml.Linq.XElement.ReplaceAll(System.Object)">
1039
      <summary>Replaces the child nodes and the attributes of this element with the specified content.</summary>
1040
      <param name="content">The content that will replace the child nodes and attributes of this element.</param>
1041
    </member>
1042
    <member name="M:System.Xml.Linq.XElement.ReplaceAll(System.Object[])">
1043
      <summary>Replaces the child nodes and the attributes of this element with the specified content.</summary>
1044
      <param name="content">A parameter list of content objects.</param>
1045
    </member>
1046
    <member name="M:System.Xml.Linq.XElement.ReplaceAttributes(System.Object)">
1047
      <summary>Replaces the attributes of this element with the specified content.</summary>
1048
      <param name="content">The content that will replace the attributes of this element.</param>
1049
    </member>
1050
    <member name="M:System.Xml.Linq.XElement.ReplaceAttributes(System.Object[])">
1051
      <summary>Replaces the attributes of this element with the specified content.</summary>
1052
      <param name="content">A parameter list of content objects.</param>
1053
    </member>
1054
    <member name="M:System.Xml.Linq.XElement.Save(System.IO.Stream)">
1055
      <summary>Outputs this <see cref="T:System.Xml.Linq.XElement" /> to the specified <see cref="T:System.IO.Stream" />.</summary>
1056
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XElement" /> to.</param>
1057
    </member>
1058
    <member name="M:System.Xml.Linq.XElement.Save(System.IO.Stream,System.Xml.Linq.SaveOptions)">
1059
      <summary>Outputs this <see cref="T:System.Xml.Linq.XElement" /> to the specified <see cref="T:System.IO.Stream" />, optionally specifying formatting behavior.</summary>
1060
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XElement" /> to.</param>
1061
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1062
    </member>
1063
    <member name="M:System.Xml.Linq.XElement.Save(System.IO.TextWriter)">
1064
      <summary>Serialize this element to a <see cref="T:System.IO.TextWriter" />.</summary>
1065
      <param name="textWriter">A <see cref="T:System.IO.TextWriter" /> that the <see cref="T:System.Xml.Linq.XElement" /> will be written to.</param>
1066
    </member>
1067
    <member name="M:System.Xml.Linq.XElement.Save(System.IO.TextWriter,System.Xml.Linq.SaveOptions)">
1068
      <summary>Serialize this element to a <see cref="T:System.IO.TextWriter" />, optionally disabling formatting.</summary>
1069
      <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> to output the XML to.</param>
1070
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1071
    </member>
1072
    <member name="M:System.Xml.Linq.XElement.Save(System.Xml.XmlWriter)">
1073
      <summary>Serialize this element to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1074
      <param name="writer">A <see cref="T:System.Xml.XmlWriter" /> that the <see cref="T:System.Xml.Linq.XElement" /> will be written to.</param>
1075
    </member>
1076
    <member name="M:System.Xml.Linq.XElement.SetAttributeValue(System.Xml.Linq.XName,System.Object)">
1077
      <summary>Sets the value of an attribute, adds an attribute, or removes an attribute. </summary>
1078
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the name of the attribute to change.</param>
1079
      <param name="value">The value to assign to the attribute. The attribute is removed if the value is null. Otherwise, the value is converted to its string representation and assigned to the <see cref="P:System.Xml.Linq.XAttribute.Value" /> property of the attribute.</param>
1080
      <exception cref="T:System.ArgumentException">The <paramref name="value" /> is an instance of <see cref="T:System.Xml.Linq.XObject" />.</exception>
1081
    </member>
1082
    <member name="M:System.Xml.Linq.XElement.SetElementValue(System.Xml.Linq.XName,System.Object)">
1083
      <summary>Sets the value of a child element, adds a child element, or removes a child element.</summary>
1084
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the name of the child element to change.</param>
1085
      <param name="value">The value to assign to the child element. The child element is removed if the value is null. Otherwise, the value is converted to its string representation and assigned to the <see cref="P:System.Xml.Linq.XElement.Value" /> property of the child element.</param>
1086
      <exception cref="T:System.ArgumentException">The <paramref name="value" /> is an instance of <see cref="T:System.Xml.Linq.XObject" />.</exception>
1087
    </member>
1088
    <member name="M:System.Xml.Linq.XElement.SetValue(System.Object)">
1089
      <summary>Sets the value of this element.</summary>
1090
      <param name="value">The value to assign to this element. The value is converted to its string representation and assigned to the <see cref="P:System.Xml.Linq.XElement.Value" /> property.</param>
1091
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> is null.</exception>
1092
      <exception cref="T:System.ArgumentException">The <paramref name="value" /> is an <see cref="T:System.Xml.Linq.XObject" />.</exception>
1093
    </member>
1094
    <member name="M:System.Xml.Linq.XElement.System#Xml#Serialization#IXmlSerializable#GetSchema">
1095
      <summary>Gets an XML schema definition that describes the XML representation of this object.</summary>
1096
      <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
1097
    </member>
1098
    <member name="M:System.Xml.Linq.XElement.System#Xml#Serialization#IXmlSerializable#ReadXml(System.Xml.XmlReader)">
1099
      <summary>Generates an object from its XML representation.</summary>
1100
      <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which the object is deserialized.</param>
1101
    </member>
1102
    <member name="M:System.Xml.Linq.XElement.System#Xml#Serialization#IXmlSerializable#WriteXml(System.Xml.XmlWriter)">
1103
      <summary>Converts an object into its XML representation.</summary>
1104
      <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to which this object is serialized.</param>
1105
    </member>
1106
    <member name="P:System.Xml.Linq.XElement.Value">
1107
      <summary>Gets the concatenated text contents of this element.</summary>
1108
      <returns>A <see cref="T:System.String" /> that contains all of the text content of this element. If there are multiple text nodes, they will be concatenated.</returns>
1109
    </member>
1110
    <member name="M:System.Xml.Linq.XElement.WriteTo(System.Xml.XmlWriter)">
1111
      <summary>Write this element to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1112
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
1113
    </member>
1114
    <member name="T:System.Xml.Linq.XName">
1115
      <summary>Represents a name of an XML element or attribute. </summary>
1116
    </member>
1117
    <member name="M:System.Xml.Linq.XName.Equals(System.Object)">
1118
      <summary>Determines whether the specified <see cref="T:System.Xml.Linq.XName" /> is equal to this <see cref="T:System.Xml.Linq.XName" />.</summary>
1119
      <returns>true if the specified <see cref="T:System.Xml.Linq.XName" /> is equal to the current <see cref="T:System.Xml.Linq.XName" />; otherwise false.</returns>
1120
      <param name="obj">The <see cref="T:System.Xml.Linq.XName" /> to compare to the current <see cref="T:System.Xml.Linq.XName" />.</param>
1121
    </member>
1122
    <member name="M:System.Xml.Linq.XName.Get(System.String)">
1123
      <summary>Gets an <see cref="T:System.Xml.Linq.XName" /> object from an expanded name.</summary>
1124
      <returns>An <see cref="T:System.Xml.Linq.XName" /> object constructed from the expanded name.</returns>
1125
      <param name="expandedName">A <see cref="T:System.String" /> that contains an expanded XML name in the format {namespace}localname.</param>
1126
    </member>
1127
    <member name="M:System.Xml.Linq.XName.Get(System.String,System.String)">
1128
      <summary>Gets an <see cref="T:System.Xml.Linq.XName" /> object from a local name and a namespace.</summary>
1129
      <returns>An <see cref="T:System.Xml.Linq.XName" /> object created from the specified local name and namespace.</returns>
1130
      <param name="localName">A local (unqualified) name.</param>
1131
      <param name="namespaceName">An XML namespace.</param>
1132
    </member>
1133
    <member name="M:System.Xml.Linq.XName.GetHashCode">
1134
      <summary>Gets a hash code for this <see cref="T:System.Xml.Linq.XName" />.</summary>
1135
      <returns>An <see cref="T:System.Int32" /> that contains the hash code for the <see cref="T:System.Xml.Linq.XName" />.</returns>
1136
    </member>
1137
    <member name="P:System.Xml.Linq.XName.LocalName">
1138
      <summary>Gets the local (unqualified) part of the name.</summary>
1139
      <returns>A <see cref="T:System.String" /> that contains the local (unqualified) part of the name.</returns>
1140
    </member>
1141
    <member name="P:System.Xml.Linq.XName.Namespace">
1142
      <summary>Gets the namespace part of the fully qualified name.</summary>
1143
      <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> that contains the namespace part of the name.</returns>
1144
    </member>
1145
    <member name="P:System.Xml.Linq.XName.NamespaceName">
1146
      <summary>Returns the URI of the <see cref="T:System.Xml.Linq.XNamespace" /> for this <see cref="T:System.Xml.Linq.XName" />.</summary>
1147
      <returns>The URI of the <see cref="T:System.Xml.Linq.XNamespace" /> for this <see cref="T:System.Xml.Linq.XName" />.</returns>
1148
    </member>
1149
    <member name="M:System.Xml.Linq.XName.op_Equality(System.Xml.Linq.XName,System.Xml.Linq.XName)">
1150
      <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XName" /> are equal.</summary>
1151
      <returns>true if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise false.</returns>
1152
      <param name="left">The first <see cref="T:System.Xml.Linq.XName" /> to compare.</param>
1153
      <param name="right">The second <see cref="T:System.Xml.Linq.XName" /> to compare.</param>
1154
    </member>
1155
    <member name="M:System.Xml.Linq.XName.op_Implicit(System.String)~System.Xml.Linq.XName">
1156
      <summary>Converts a string formatted as an expanded XML name (that is,{namespace}localname) to an <see cref="T:System.Xml.Linq.XName" /> object.</summary>
1157
      <returns>An <see cref="T:System.Xml.Linq.XName" /> object constructed from the expanded name.</returns>
1158
      <param name="expandedName">A string that contains an expanded XML name in the format {namespace}localname.</param>
1159
    </member>
1160
    <member name="M:System.Xml.Linq.XName.op_Inequality(System.Xml.Linq.XName,System.Xml.Linq.XName)">
1161
      <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XName" /> are not equal.</summary>
1162
      <returns>true if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise false.</returns>
1163
      <param name="left">The first <see cref="T:System.Xml.Linq.XName" /> to compare.</param>
1164
      <param name="right">The second <see cref="T:System.Xml.Linq.XName" /> to compare.</param>
1165
    </member>
1166
    <member name="M:System.Xml.Linq.XName.System#IEquatable{T}#Equals(System.Xml.Linq.XName)">
1167
      <summary>Indicates whether the current <see cref="T:System.Xml.Linq.XName" /> is equal to the specified <see cref="T:System.Xml.Linq.XName" />.</summary>
1168
      <returns>true if this <see cref="T:System.Xml.Linq.XName" /> is equal to the specified <see cref="T:System.Xml.Linq.XName" />, otherwise false.</returns>
1169
      <param name="other">The <see cref="T:System.Xml.Linq.XName" /> to compare with this <see cref="T:System.Xml.Linq.XName" />.</param>
1170
    </member>
1171
    <member name="M:System.Xml.Linq.XName.ToString">
1172
      <summary>Returns the expanded XML name in the format {namespace}localname.</summary>
1173
      <returns>A <see cref="T:System.String" /> that contains the expanded XML name in the format {namespace}localname.</returns>
1174
    </member>
1175
    <member name="T:System.Xml.Linq.XNamespace">
1176
      <summary>Represents an XML namespace. This class cannot be inherited. </summary>
1177
    </member>
1178
    <member name="M:System.Xml.Linq.XNamespace.Equals(System.Object)">
1179
      <summary>Determines whether the specified <see cref="T:System.Xml.Linq.XNamespace" /> is equal to the current <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
1180
      <returns>A <see cref="T:System.Boolean" /> that indicates whether the specified <see cref="T:System.Xml.Linq.XNamespace" /> is equal to the current <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
1181
      <param name="obj">The <see cref="T:System.Xml.Linq.XNamespace" /> to compare to the current <see cref="T:System.Xml.Linq.XNamespace" />.</param>
1182
    </member>
1183
    <member name="M:System.Xml.Linq.XNamespace.Get(System.String)">
1184
      <summary>Gets an <see cref="T:System.Xml.Linq.XNamespace" /> for the specified Uniform Resource Identifier (URI).</summary>
1185
      <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> created from the specified URI.</returns>
1186
      <param name="namespaceName">A <see cref="T:System.String" /> that contains a namespace URI.</param>
1187
    </member>
1188
    <member name="M:System.Xml.Linq.XNamespace.GetHashCode">
1189
      <summary>Gets a hash code for this <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
1190
      <returns>An <see cref="T:System.Int32" /> that contains the hash code for the <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
1191
    </member>
1192
    <member name="M:System.Xml.Linq.XNamespace.GetName(System.String)">
1193
      <summary>Returns an <see cref="T:System.Xml.Linq.XName" /> object created from this <see cref="T:System.Xml.Linq.XNamespace" /> and the specified local name.</summary>
1194
      <returns>An <see cref="T:System.Xml.Linq.XName" /> created from this <see cref="T:System.Xml.Linq.XNamespace" /> and the specified local name.</returns>
1195
      <param name="localName">A <see cref="T:System.String" /> that contains a local name.</param>
1196
    </member>
1197
    <member name="P:System.Xml.Linq.XNamespace.NamespaceName">
1198
      <summary>Gets the Uniform Resource Identifier (URI) of this namespace.</summary>
1199
      <returns>A <see cref="T:System.String" /> that contains the URI of the namespace.</returns>
1200
    </member>
1201
    <member name="P:System.Xml.Linq.XNamespace.None">
1202
      <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to no namespace.</summary>
1203
      <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to no namespace.</returns>
1204
    </member>
1205
    <member name="M:System.Xml.Linq.XNamespace.op_Addition(System.Xml.Linq.XNamespace,System.String)">
1206
      <summary>Combines an <see cref="T:System.Xml.Linq.XNamespace" /> object with a local name to create an <see cref="T:System.Xml.Linq.XName" />.</summary>
1207
      <returns>The new <see cref="T:System.Xml.Linq.XName" /> constructed from the namespace and local name.</returns>
1208
      <param name="ns">An <see cref="T:System.Xml.Linq.XNamespace" /> that contains the namespace.</param>
1209
      <param name="localName">A <see cref="T:System.String" /> that contains the local name.</param>
1210
    </member>
1211
    <member name="M:System.Xml.Linq.XNamespace.op_Equality(System.Xml.Linq.XNamespace,System.Xml.Linq.XNamespace)">
1212
      <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XNamespace" /> are equal.</summary>
1213
      <returns>A <see cref="T:System.Boolean" /> that indicates whether <paramref name="left" /> and <paramref name="right" /> are equal.</returns>
1214
      <param name="left">The first <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
1215
      <param name="right">The second <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
1216
    </member>
1217
    <member name="M:System.Xml.Linq.XNamespace.op_Implicit(System.String)~System.Xml.Linq.XNamespace">
1218
      <summary>Converts a string containing a Uniform Resource Identifier (URI) to an <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
1219
      <returns>An <see cref="T:System.Xml.Linq.XNamespace" /> constructed from the URI string.</returns>
1220
      <param name="namespaceName">A <see cref="T:System.String" /> that contains the namespace URI.</param>
1221
    </member>
1222
    <member name="M:System.Xml.Linq.XNamespace.op_Inequality(System.Xml.Linq.XNamespace,System.Xml.Linq.XNamespace)">
1223
      <summary>Returns a value indicating whether two instances of <see cref="T:System.Xml.Linq.XNamespace" /> are not equal.</summary>
1224
      <returns>A <see cref="T:System.Boolean" /> that indicates whether <paramref name="left" /> and <paramref name="right" /> are not equal.</returns>
1225
      <param name="left">The first <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
1226
      <param name="right">The second <see cref="T:System.Xml.Linq.XNamespace" /> to compare.</param>
1227
    </member>
1228
    <member name="M:System.Xml.Linq.XNamespace.ToString">
1229
      <summary>Returns the URI of this <see cref="T:System.Xml.Linq.XNamespace" />.</summary>
1230
      <returns>The URI of this <see cref="T:System.Xml.Linq.XNamespace" />.</returns>
1231
    </member>
1232
    <member name="P:System.Xml.Linq.XNamespace.Xml">
1233
      <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).</summary>
1234
      <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace).</returns>
1235
    </member>
1236
    <member name="P:System.Xml.Linq.XNamespace.Xmlns">
1237
      <summary>Gets the <see cref="T:System.Xml.Linq.XNamespace" /> object that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).</summary>
1238
      <returns>The <see cref="T:System.Xml.Linq.XNamespace" /> that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/).</returns>
1239
    </member>
1240
    <member name="T:System.Xml.Linq.XNode">
1241
      <summary>Represents the abstract concept of a node (one of: element, comment, document type, processing instruction, or text node) in the XML tree.  </summary>
1242
    </member>
1243
    <member name="M:System.Xml.Linq.XNode.AddAfterSelf(System.Object)">
1244
      <summary>Adds the specified content immediately after this node.</summary>
1245
      <param name="content">A content object that contains simple content or a collection of content objects to be added after this node.</param>
1246
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
1247
    </member>
1248
    <member name="M:System.Xml.Linq.XNode.AddAfterSelf(System.Object[])">
1249
      <summary>Adds the specified content immediately after this node.</summary>
1250
      <param name="content">A parameter list of content objects.</param>
1251
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
1252
    </member>
1253
    <member name="M:System.Xml.Linq.XNode.AddBeforeSelf(System.Object)">
1254
      <summary>Adds the specified content immediately before this node.</summary>
1255
      <param name="content">A content object that contains simple content or a collection of content objects to be added before this node.</param>
1256
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
1257
    </member>
1258
    <member name="M:System.Xml.Linq.XNode.AddBeforeSelf(System.Object[])">
1259
      <summary>Adds the specified content immediately before this node.</summary>
1260
      <param name="content">A parameter list of content objects.</param>
1261
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
1262
    </member>
1263
    <member name="M:System.Xml.Linq.XNode.Ancestors">
1264
      <summary>Returns a collection of the ancestor elements of this node.</summary>
1265
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the ancestor elements of this node.</returns>
1266
    </member>
1267
    <member name="M:System.Xml.Linq.XNode.Ancestors(System.Xml.Linq.XName)">
1268
      <summary>Returns a filtered collection of the ancestor elements of this node. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
1269
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the ancestor elements of this node. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.The nodes in the returned collection are in reverse document order.This method uses deferred execution.</returns>
1270
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
1271
    </member>
1272
    <member name="M:System.Xml.Linq.XNode.CompareDocumentOrder(System.Xml.Linq.XNode,System.Xml.Linq.XNode)">
1273
      <summary>Compares two nodes to determine their relative XML document order.</summary>
1274
      <returns>An int containing 0 if the nodes are equal; -1 if <paramref name="n1" /> is before <paramref name="n2" />; 1 if <paramref name="n1" /> is after <paramref name="n2" />.</returns>
1275
      <param name="n1">First <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1276
      <param name="n2">Second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1277
      <exception cref="T:System.InvalidOperationException">The two nodes do not share a common ancestor.</exception>
1278
    </member>
1279
    <member name="M:System.Xml.Linq.XNode.CreateReader">
1280
      <summary>Creates an <see cref="T:System.Xml.XmlReader" /> for this node.</summary>
1281
      <returns>An <see cref="T:System.Xml.XmlReader" /> that can be used to read this node and its descendants.</returns>
1282
    </member>
1283
    <member name="M:System.Xml.Linq.XNode.CreateReader(System.Xml.Linq.ReaderOptions)">
1284
      <summary>Creates an <see cref="T:System.Xml.XmlReader" /> for this node.</summary>
1285
      <returns>An <see cref="T:System.Xml.XmlReader" /> that can be used to read this node and its descendants.</returns>
1286
      <param name="readerOptions">Specifies whether to omit duplicate namespaces.</param>
1287
    </member>
1288
    <member name="M:System.Xml.Linq.XNode.DeepEquals(System.Xml.Linq.XNode,System.Xml.Linq.XNode)">
1289
      <summary>Compares the values of two nodes, including the values of all descendant nodes.</summary>
1290
      <returns>true if the nodes are equal; otherwise false.</returns>
1291
      <param name="n1">The first <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1292
      <param name="n2">The second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1293
    </member>
1294
    <member name="P:System.Xml.Linq.XNode.DocumentOrderComparer">
1295
      <summary>Gets a comparer that can compare the relative position of two nodes.</summary>
1296
      <returns>A <see cref="T:System.Xml.Linq.XNodeDocumentOrderComparer" /> that can compare the relative position of two nodes.</returns>
1297
    </member>
1298
    <member name="M:System.Xml.Linq.XNode.ElementsAfterSelf">
1299
      <summary>Returns a collection of the sibling elements after this node, in document order.</summary>
1300
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the sibling elements after this node, in document order.</returns>
1301
    </member>
1302
    <member name="M:System.Xml.Linq.XNode.ElementsAfterSelf(System.Xml.Linq.XName)">
1303
      <summary>Returns a filtered collection of the sibling elements after this node, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
1304
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the sibling elements after this node, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
1305
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
1306
    </member>
1307
    <member name="M:System.Xml.Linq.XNode.ElementsBeforeSelf">
1308
      <summary>Returns a collection of the sibling elements before this node, in document order.</summary>
1309
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the sibling elements before this node, in document order.</returns>
1310
    </member>
1311
    <member name="M:System.Xml.Linq.XNode.ElementsBeforeSelf(System.Xml.Linq.XName)">
1312
      <summary>Returns a filtered collection of the sibling elements before this node, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</summary>
1313
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XElement" /> of the sibling elements before this node, in document order. Only elements that have a matching <see cref="T:System.Xml.Linq.XName" /> are included in the collection.</returns>
1314
      <param name="name">The <see cref="T:System.Xml.Linq.XName" /> to match.</param>
1315
    </member>
1316
    <member name="P:System.Xml.Linq.XNode.EqualityComparer">
1317
      <summary>Gets a comparer that can compare two nodes for value equality.</summary>
1318
      <returns>A <see cref="T:System.Xml.Linq.XNodeEqualityComparer" /> that can compare two nodes for value equality.</returns>
1319
    </member>
1320
    <member name="M:System.Xml.Linq.XNode.IsAfter(System.Xml.Linq.XNode)">
1321
      <summary>Determines if the current node appears after a specified node in terms of document order.</summary>
1322
      <returns>true if this node appears after the specified node; otherwise false.</returns>
1323
      <param name="node">The <see cref="T:System.Xml.Linq.XNode" /> to compare for document order.</param>
1324
    </member>
1325
    <member name="M:System.Xml.Linq.XNode.IsBefore(System.Xml.Linq.XNode)">
1326
      <summary>Determines if the current node appears before a specified node in terms of document order.</summary>
1327
      <returns>true if this node appears before the specified node; otherwise false.</returns>
1328
      <param name="node">The <see cref="T:System.Xml.Linq.XNode" /> to compare for document order.</param>
1329
    </member>
1330
    <member name="P:System.Xml.Linq.XNode.NextNode">
1331
      <summary>Gets the next sibling node of this node.</summary>
1332
      <returns>The <see cref="T:System.Xml.Linq.XNode" /> that contains the next sibling node.</returns>
1333
    </member>
1334
    <member name="M:System.Xml.Linq.XNode.NodesAfterSelf">
1335
      <summary>Returns a collection of the sibling nodes after this node, in document order.</summary>
1336
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> of the sibling nodes after this node, in document order.</returns>
1337
    </member>
1338
    <member name="M:System.Xml.Linq.XNode.NodesBeforeSelf">
1339
      <summary>Returns a collection of the sibling nodes before this node, in document order.</summary>
1340
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> of the sibling nodes before this node, in document order.</returns>
1341
    </member>
1342
    <member name="P:System.Xml.Linq.XNode.PreviousNode">
1343
      <summary>Gets the previous sibling node of this node.</summary>
1344
      <returns>The <see cref="T:System.Xml.Linq.XNode" /> that contains the previous sibling node.</returns>
1345
    </member>
1346
    <member name="M:System.Xml.Linq.XNode.ReadFrom(System.Xml.XmlReader)">
1347
      <summary>Creates an <see cref="T:System.Xml.Linq.XNode" /> from an <see cref="T:System.Xml.XmlReader" />.</summary>
1348
      <returns>An <see cref="T:System.Xml.Linq.XNode" /> that contains the node and its descendant nodes that were read from the reader. The runtime type of the node is determined by the node type (<see cref="P:System.Xml.Linq.XObject.NodeType" />) of the first node encountered in the reader.</returns>
1349
      <param name="reader">An <see cref="T:System.Xml.XmlReader" /> positioned at the node to read into this <see cref="T:System.Xml.Linq.XNode" />.</param>
1350
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on a recognized node type.</exception>
1351
      <exception cref="T:System.Xml.XmlException">The underlying <see cref="T:System.Xml.XmlReader" /> throws an exception.</exception>
1352
    </member>
1353
    <member name="M:System.Xml.Linq.XNode.Remove">
1354
      <summary>Removes this node from its parent.</summary>
1355
      <exception cref="T:System.InvalidOperationException">The parent is null.</exception>
1356
    </member>
1357
    <member name="M:System.Xml.Linq.XNode.ReplaceWith(System.Object)">
1358
      <summary>Replaces this node with the specified content.</summary>
1359
      <param name="content">Content that replaces this node.</param>
1360
    </member>
1361
    <member name="M:System.Xml.Linq.XNode.ReplaceWith(System.Object[])">
1362
      <summary>Replaces this node with the specified content.</summary>
1363
      <param name="content">A parameter list of the new content.</param>
1364
    </member>
1365
    <member name="M:System.Xml.Linq.XNode.ToString">
1366
      <summary>Returns the indented XML for this node.</summary>
1367
      <returns>A <see cref="T:System.String" /> containing the indented XML.</returns>
1368
    </member>
1369
    <member name="M:System.Xml.Linq.XNode.ToString(System.Xml.Linq.SaveOptions)">
1370
      <summary>Returns the XML for this node, optionally disabling formatting.</summary>
1371
      <returns>A <see cref="T:System.String" /> containing the XML.</returns>
1372
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1373
    </member>
1374
    <member name="M:System.Xml.Linq.XNode.WriteTo(System.Xml.XmlWriter)">
1375
      <summary>Writes this node to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1376
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
1377
    </member>
1378
    <member name="T:System.Xml.Linq.XNodeDocumentOrderComparer">
1379
      <summary>Contains functionality to compare nodes for their document order. This class cannot be inherited.  </summary>
1380
    </member>
1381
    <member name="M:System.Xml.Linq.XNodeDocumentOrderComparer.#ctor">
1382
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XNodeDocumentOrderComparer" /> class. </summary>
1383
    </member>
1384
    <member name="M:System.Xml.Linq.XNodeDocumentOrderComparer.Compare(System.Xml.Linq.XNode,System.Xml.Linq.XNode)">
1385
      <summary>Compares two nodes to determine their relative document order.</summary>
1386
      <returns>An <see cref="T:System.Int32" /> that contains 0 if the nodes are equal; -1 if <paramref name="x" /> is before <paramref name="y" />; 1 if <paramref name="x" /> is after <paramref name="y" />.</returns>
1387
      <param name="x">The first <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1388
      <param name="y">The second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1389
      <exception cref="T:System.InvalidOperationException">The two nodes do not share a common ancestor.</exception>
1390
    </member>
1391
    <member name="T:System.Xml.Linq.XNodeEqualityComparer">
1392
      <summary>Compares nodes to determine whether they are equal. This class cannot be inherited. </summary>
1393
    </member>
1394
    <member name="M:System.Xml.Linq.XNodeEqualityComparer.#ctor">
1395
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XNodeEqualityComparer" /> class. </summary>
1396
    </member>
1397
    <member name="M:System.Xml.Linq.XNodeEqualityComparer.Equals(System.Xml.Linq.XNode,System.Xml.Linq.XNode)">
1398
      <summary>Compares the values of two nodes.</summary>
1399
      <returns>A <see cref="T:System.Boolean" /> indicating if the nodes are equal.</returns>
1400
      <param name="x">The first <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1401
      <param name="y">The second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1402
    </member>
1403
    <member name="M:System.Xml.Linq.XNodeEqualityComparer.GetHashCode(System.Xml.Linq.XNode)">
1404
      <summary>Returns a hash code based on an <see cref="T:System.Xml.Linq.XNode" />.</summary>
1405
      <returns>A <see cref="T:System.Int32" /> that contains a value-based hash code for the node.</returns>
1406
      <param name="obj">The <see cref="T:System.Xml.Linq.XNode" /> to hash.</param>
1407
    </member>
1408
    <member name="T:System.Xml.Linq.XObject">
1409
      <summary>Represents a node or an attribute in an XML tree. </summary>
1410
    </member>
1411
    <member name="M:System.Xml.Linq.XObject.AddAnnotation(System.Object)">
1412
      <summary>Adds an object to the annotation list of this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1413
      <param name="annotation">An <see cref="T:System.Object" /> that contains the annotation to add.</param>
1414
    </member>
1415
    <member name="M:System.Xml.Linq.XObject.Annotation``1">
1416
      <summary>Get the first annotation object of the specified type from this <see cref="T:System.Xml.Linq.XObject" />. </summary>
1417
      <returns>The first annotation object that matches the specified type, or null if no annotation is of the specified type.</returns>
1418
      <typeparam name="T">The type of the annotation to retrieve.</typeparam>
1419
    </member>
1420
    <member name="M:System.Xml.Linq.XObject.Annotation(System.Type)">
1421
      <summary>Gets the first annotation object of the specified type from this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1422
      <returns>The <see cref="T:System.Object" /> that contains the first annotation object that matches the specified type, or null if no annotation is of the specified type.</returns>
1423
      <param name="type">The <see cref="T:System.Type" /> of the annotation to retrieve.</param>
1424
    </member>
1425
    <member name="M:System.Xml.Linq.XObject.Annotations``1">
1426
      <summary>Gets a collection of annotations of the specified type for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1427
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the annotations for this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1428
      <typeparam name="T">The type of the annotations to retrieve.</typeparam>
1429
    </member>
1430
    <member name="M:System.Xml.Linq.XObject.Annotations(System.Type)">
1431
      <summary>Gets a collection of annotations of the specified type for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1432
      <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Object" /> that contains the annotations that match the specified type for this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1433
      <param name="type">The <see cref="T:System.Type" /> of the annotations to retrieve.</param>
1434
    </member>
1435
    <member name="P:System.Xml.Linq.XObject.BaseUri">
1436
      <summary>Gets the base URI for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1437
      <returns>A <see cref="T:System.String" /> that contains the base URI for this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1438
    </member>
1439
    <member name="E:System.Xml.Linq.XObject.Changed">
1440
      <summary>Raised when this <see cref="T:System.Xml.Linq.XObject" /> or any of its descendants have changed.</summary>
1441
    </member>
1442
    <member name="E:System.Xml.Linq.XObject.Changing">
1443
      <summary>Raised when this <see cref="T:System.Xml.Linq.XObject" /> or any of its descendants are about to change.</summary>
1444
    </member>
1445
    <member name="P:System.Xml.Linq.XObject.Document">
1446
      <summary>Gets the <see cref="T:System.Xml.Linq.XDocument" /> for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1447
      <returns>The <see cref="T:System.Xml.Linq.XDocument" /> for this <see cref="T:System.Xml.Linq.XObject" />. </returns>
1448
    </member>
1449
    <member name="P:System.Xml.Linq.XObject.NodeType">
1450
      <summary>Gets the node type for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1451
      <returns>The node type for this <see cref="T:System.Xml.Linq.XObject" />. </returns>
1452
    </member>
1453
    <member name="P:System.Xml.Linq.XObject.Parent">
1454
      <summary>Gets the parent <see cref="T:System.Xml.Linq.XElement" /> of this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1455
      <returns>The parent <see cref="T:System.Xml.Linq.XElement" /> of this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1456
    </member>
1457
    <member name="M:System.Xml.Linq.XObject.RemoveAnnotations``1">
1458
      <summary>Removes the annotations of the specified type from this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1459
      <typeparam name="T">The type of annotations to remove.</typeparam>
1460
    </member>
1461
    <member name="M:System.Xml.Linq.XObject.RemoveAnnotations(System.Type)">
1462
      <summary>Removes the annotations of the specified type from this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1463
      <param name="type">The <see cref="T:System.Type" /> of annotations to remove.</param>
1464
    </member>
1465
    <member name="M:System.Xml.Linq.XObject.System#Xml#IXmlLineInfo#HasLineInfo">
1466
      <summary>Gets a value indicating whether or not this <see cref="T:System.Xml.Linq.XObject" /> has line information.</summary>
1467
      <returns>true if the <see cref="T:System.Xml.Linq.XObject" /> has line information, otherwise false.</returns>
1468
    </member>
1469
    <member name="P:System.Xml.Linq.XObject.System#Xml#IXmlLineInfo#LineNumber">
1470
      <summary>Gets the line number that the underlying <see cref="T:System.Xml.XmlReader" /> reported for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1471
      <returns>An <see cref="T:System.Int32" /> that contains the line number reported by the <see cref="T:System.Xml.XmlReader" /> for this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1472
    </member>
1473
    <member name="P:System.Xml.Linq.XObject.System#Xml#IXmlLineInfo#LinePosition">
1474
      <summary>Gets the line position that the underlying <see cref="T:System.Xml.XmlReader" /> reported for this <see cref="T:System.Xml.Linq.XObject" />.</summary>
1475
      <returns>An <see cref="T:System.Int32" /> that contains the line position reported by the <see cref="T:System.Xml.XmlReader" /> for this <see cref="T:System.Xml.Linq.XObject" />.</returns>
1476
    </member>
1477
    <member name="T:System.Xml.Linq.XObjectChange">
1478
      <summary>Specifies the event type when an event is raised for an <see cref="T:System.Xml.Linq.XObject" />.</summary>
1479
    </member>
1480
    <member name="F:System.Xml.Linq.XObjectChange.Add">
1481
      <summary>An <see cref="T:System.Xml.Linq.XObject" /> has been or will be added to an <see cref="T:System.Xml.Linq.XContainer" />.</summary>
1482
    </member>
1483
    <member name="F:System.Xml.Linq.XObjectChange.Remove">
1484
      <summary>An <see cref="T:System.Xml.Linq.XObject" /> has been or will be removed from an <see cref="T:System.Xml.Linq.XContainer" />.</summary>
1485
    </member>
1486
    <member name="F:System.Xml.Linq.XObjectChange.Name">
1487
      <summary>An <see cref="T:System.Xml.Linq.XObject" /> has been or will be renamed.</summary>
1488
    </member>
1489
    <member name="F:System.Xml.Linq.XObjectChange.Value">
1490
      <summary>The value of an <see cref="T:System.Xml.Linq.XObject" /> has been or will be changed. In addition, a change in the serialization of an empty element (either from an empty tag to start/end tag pair or vice versa) raises this event.</summary>
1491
    </member>
1492
    <member name="T:System.Xml.Linq.XObjectChangeEventArgs">
1493
      <summary>Provides data for the <see cref="E:System.Xml.Linq.XObject.Changing" /> and <see cref="E:System.Xml.Linq.XObject.Changed" /> events.</summary>
1494
    </member>
1495
    <member name="M:System.Xml.Linq.XObjectChangeEventArgs.#ctor(System.Xml.Linq.XObjectChange)">
1496
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XObjectChangeEventArgs" /> class. </summary>
1497
      <param name="objectChange">An <see cref="T:System.Xml.Linq.XObjectChange" /> that contains the event arguments for LINQ to XML events.</param>
1498
    </member>
1499
    <member name="F:System.Xml.Linq.XObjectChangeEventArgs.Add">
1500
      <summary>Event argument for an <see cref="F:System.Xml.Linq.XObjectChange.Add" /> change event.</summary>
1501
    </member>
1502
    <member name="F:System.Xml.Linq.XObjectChangeEventArgs.Name">
1503
      <summary>Event argument for a <see cref="F:System.Xml.Linq.XObjectChange.Name" /> change event.</summary>
1504
    </member>
1505
    <member name="P:System.Xml.Linq.XObjectChangeEventArgs.ObjectChange">
1506
      <summary>Gets the type of change.</summary>
1507
      <returns>An <see cref="T:System.Xml.Linq.XObjectChange" /> that contains the type of change.</returns>
1508
    </member>
1509
    <member name="F:System.Xml.Linq.XObjectChangeEventArgs.Remove">
1510
      <summary>Event argument for a <see cref="F:System.Xml.Linq.XObjectChange.Remove" /> change event.</summary>
1511
    </member>
1512
    <member name="F:System.Xml.Linq.XObjectChangeEventArgs.Value">
1513
      <summary>Event argument for a <see cref="F:System.Xml.Linq.XObjectChange.Value" /> change event.</summary>
1514
    </member>
1515
    <member name="T:System.Xml.Linq.XProcessingInstruction">
1516
      <summary>Represents an XML processing instruction. </summary>
1517
    </member>
1518
    <member name="M:System.Xml.Linq.XProcessingInstruction.#ctor(System.String,System.String)">
1519
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XProcessingInstruction" /> class. </summary>
1520
      <param name="target">A <see cref="T:System.String" /> containing the target application for this <see cref="T:System.Xml.Linq.XProcessingInstruction" />.</param>
1521
      <param name="data">The string data for this <see cref="T:System.Xml.Linq.XProcessingInstruction" />.</param>
1522
      <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> or <paramref name="data" /> parameter is null.</exception>
1523
      <exception cref="T:System.ArgumentException">The <paramref name="target" /> does not follow the constraints of an XML name.</exception>
1524
    </member>
1525
    <member name="M:System.Xml.Linq.XProcessingInstruction.#ctor(System.Xml.Linq.XProcessingInstruction)">
1526
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XProcessingInstruction" /> class. </summary>
1527
      <param name="other">The <see cref="T:System.Xml.Linq.XProcessingInstruction" /> node to copy from.</param>
1528
    </member>
1529
    <member name="P:System.Xml.Linq.XProcessingInstruction.Data">
1530
      <summary>Gets or sets the string value of this processing instruction.</summary>
1531
      <returns>A <see cref="T:System.String" /> that contains the string value of this processing instruction.</returns>
1532
      <exception cref="T:System.ArgumentNullException">The string <paramref name="value" /> is null.</exception>
1533
    </member>
1534
    <member name="P:System.Xml.Linq.XProcessingInstruction.NodeType">
1535
      <summary>Gets the node type for this node.</summary>
1536
      <returns>The node type. For <see cref="T:System.Xml.Linq.XProcessingInstruction" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.ProcessingInstruction" />.</returns>
1537
    </member>
1538
    <member name="P:System.Xml.Linq.XProcessingInstruction.Target">
1539
      <summary>Gets or sets a string containing the target application for this processing instruction.</summary>
1540
      <returns>A <see cref="T:System.String" /> containing the target application for this processing instruction.</returns>
1541
      <exception cref="T:System.ArgumentNullException">The string <paramref name="value" /> is null.</exception>
1542
      <exception cref="T:System.ArgumentException">The <paramref name="target" /> does not follow the constraints of an XML name.</exception>
1543
    </member>
1544
    <member name="M:System.Xml.Linq.XProcessingInstruction.WriteTo(System.Xml.XmlWriter)">
1545
      <summary>Writes this processing instruction to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1546
      <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write this processing instruction to.</param>
1547
    </member>
1548
    <member name="T:System.Xml.Linq.XStreamingElement">
1549
      <summary>Represents elements in an XML tree that supports deferred streaming output.</summary>
1550
    </member>
1551
    <member name="M:System.Xml.Linq.XStreamingElement.#ctor(System.Xml.Linq.XName)">
1552
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XElement" /> class from the specified <see cref="T:System.Xml.Linq.XName" />.</summary>
1553
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the name of the element.</param>
1554
    </member>
1555
    <member name="M:System.Xml.Linq.XStreamingElement.#ctor(System.Xml.Linq.XName,System.Object)">
1556
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XStreamingElement" /> class with the specified name and content.</summary>
1557
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the element name.</param>
1558
      <param name="content">The contents of the element.</param>
1559
    </member>
1560
    <member name="M:System.Xml.Linq.XStreamingElement.#ctor(System.Xml.Linq.XName,System.Object[])">
1561
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XStreamingElement" /> class with the specified name and content.</summary>
1562
      <param name="name">An <see cref="T:System.Xml.Linq.XName" /> that contains the element name.</param>
1563
      <param name="content">The contents of the element.</param>
1564
    </member>
1565
    <member name="M:System.Xml.Linq.XStreamingElement.Add(System.Object)">
1566
      <summary>Adds the specified content as children to this <see cref="T:System.Xml.Linq.XStreamingElement" />.</summary>
1567
      <param name="content">Content to be added to the streaming element.</param>
1568
    </member>
1569
    <member name="M:System.Xml.Linq.XStreamingElement.Add(System.Object[])">
1570
      <summary>Adds the specified content as children to this <see cref="T:System.Xml.Linq.XStreamingElement" />.</summary>
1571
      <param name="content">Content to be added to the streaming element.</param>
1572
    </member>
1573
    <member name="P:System.Xml.Linq.XStreamingElement.Name">
1574
      <summary>Gets or sets the name of this streaming element.</summary>
1575
      <returns>An <see cref="T:System.Xml.Linq.XName" /> that contains the name of this streaming element.</returns>
1576
    </member>
1577
    <member name="M:System.Xml.Linq.XStreamingElement.Save(System.IO.Stream)">
1578
      <summary>Outputs this <see cref="T:System.Xml.Linq.XStreamingElement" /> to the specified <see cref="T:System.IO.Stream" />.</summary>
1579
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XDocument" /> to.</param>
1580
    </member>
1581
    <member name="M:System.Xml.Linq.XStreamingElement.Save(System.IO.Stream,System.Xml.Linq.SaveOptions)">
1582
      <summary>Outputs this <see cref="T:System.Xml.Linq.XStreamingElement" /> to the specified <see cref="T:System.IO.Stream" />, optionally specifying formatting behavior.</summary>
1583
      <param name="stream">The stream to output this <see cref="T:System.Xml.Linq.XDocument" /> to.</param>
1584
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1585
    </member>
1586
    <member name="M:System.Xml.Linq.XStreamingElement.Save(System.IO.TextWriter)">
1587
      <summary>Serialize this streaming element to a <see cref="T:System.IO.TextWriter" />.</summary>
1588
      <param name="textWriter">A <see cref="T:System.IO.TextWriter" /> that the <see cref="T:System.Xml.Linq.XStreamingElement" /> will be written to.</param>
1589
    </member>
1590
    <member name="M:System.Xml.Linq.XStreamingElement.Save(System.IO.TextWriter,System.Xml.Linq.SaveOptions)">
1591
      <summary>Serialize this streaming element to a <see cref="T:System.IO.TextWriter" />, optionally disabling formatting.</summary>
1592
      <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> to output the XML to.</param>
1593
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1594
    </member>
1595
    <member name="M:System.Xml.Linq.XStreamingElement.Save(System.Xml.XmlWriter)">
1596
      <summary>Serialize this streaming element to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1597
      <param name="writer">A <see cref="T:System.Xml.XmlWriter" /> that the <see cref="T:System.Xml.Linq.XElement" /> will be written to.</param>
1598
    </member>
1599
    <member name="M:System.Xml.Linq.XStreamingElement.ToString">
1600
      <summary>Returns the formatted (indented) XML for this streaming element.</summary>
1601
      <returns>A <see cref="T:System.String" /> containing the indented XML.</returns>
1602
    </member>
1603
    <member name="M:System.Xml.Linq.XStreamingElement.ToString(System.Xml.Linq.SaveOptions)">
1604
      <summary>Returns the XML for this streaming element, optionally disabling formatting.</summary>
1605
      <returns>A <see cref="T:System.String" /> containing the XML.</returns>
1606
      <param name="options">A <see cref="T:System.Xml.Linq.SaveOptions" /> that specifies formatting behavior.</param>
1607
    </member>
1608
    <member name="M:System.Xml.Linq.XStreamingElement.WriteTo(System.Xml.XmlWriter)">
1609
      <summary>Writes this streaming element to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1610
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
1611
    </member>
1612
    <member name="T:System.Xml.Linq.XText">
1613
      <summary>Represents a text node.  </summary>
1614
    </member>
1615
    <member name="M:System.Xml.Linq.XText.#ctor(System.String)">
1616
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XText" /> class. </summary>
1617
      <param name="value">The <see cref="T:System.String" /> that contains the value of the <see cref="T:System.Xml.Linq.XText" /> node.</param>
1618
    </member>
1619
    <member name="M:System.Xml.Linq.XText.#ctor(System.Xml.Linq.XText)">
1620
      <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XText" /> class from another <see cref="T:System.Xml.Linq.XText" /> object.</summary>
1621
      <param name="other">The <see cref="T:System.Xml.Linq.XText" /> node to copy from.</param>
1622
    </member>
1623
    <member name="P:System.Xml.Linq.XText.NodeType">
1624
      <summary>Gets the node type for this node.</summary>
1625
      <returns>The node type. For <see cref="T:System.Xml.Linq.XText" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Text" />.</returns>
1626
    </member>
1627
    <member name="P:System.Xml.Linq.XText.Value">
1628
      <summary>Gets or sets the value of this node.</summary>
1629
      <returns>A <see cref="T:System.String" /> that contains the value of this node.</returns>
1630
    </member>
1631
    <member name="M:System.Xml.Linq.XText.WriteTo(System.Xml.XmlWriter)">
1632
      <summary>Writes this node to an <see cref="T:System.Xml.XmlWriter" />.</summary>
1633
      <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
1634
    </member>
1635
    <member name="M:System.Xml.Linq.XNodeDocumentOrderComparer.System#Collections#IComparer#Compare(System.Object,System.Object)">
1636
      <summary>Compares two nodes to determine their relative document order.</summary>
1637
      <returns>An <see cref="T:System.Int32" /> that contains 0 if the nodes are equal; -1 if <paramref name="x" /> is before <paramref name="y" />; 1 if <paramref name="x" /> is after <paramref name="y" />.</returns>
1638
      <param name="x">The first <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1639
      <param name="y">The second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1640
      <exception cref="T:System.InvalidOperationException">The two nodes do not share a common ancestor.</exception>
1641
      <exception cref="T:System.ArgumentException">The two nodes are not derived from <see cref="T:System.Xml.Linq.XNode" />.</exception>
1642
    </member>
1643
    <member name="M:System.Xml.Linq.XNodeEqualityComparer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
1644
      <summary>Compares the values of two nodes.</summary>
1645
      <returns>true if the nodes are equal; otherwise false.</returns>
1646
      <param name="x">The first <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1647
      <param name="y">The second <see cref="T:System.Xml.Linq.XNode" /> to compare.</param>
1648
    </member>
1649
    <member name="M:System.Xml.Linq.XNodeEqualityComparer.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
1650
      <summary>Returns a hash code based on the value of a node.</summary>
1651
      <returns>A <see cref="T:System.Int32" /> that contains a value-based hash code for the node.</returns>
1652
      <param name="obj">The node to hash.</param>
1653
    </member>
1654
  </members>
1655
</doc>