[ImageUtil] Fix crash issue (#923)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API5 / build / tizen50 / ref / System.Net.Http.xml
1 <?xml version="1.0" encoding="utf-8"?><doc>
2   <assembly>
3     <name>System.Net.Http</name>
4   </assembly>
5   <members>
6     <member name="T:System.Net.Http.ByteArrayContent">
7       <summary>Provides HTTP content based on a byte array.</summary>
8     </member>
9     <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[])">
10       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent"></see> class.</summary>
11       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent"></see>.</param>
12       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> parameter is null.</exception>
13     </member>
14     <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[],System.Int32,System.Int32)">
15       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent"></see> class.</summary>
16       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent"></see>.</param>
17       <param name="offset">The offset, in bytes, in the content parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent"></see>.</param>
18       <param name="count">The number of bytes in the content starting from the offset parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent"></see>.</param>
19       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> parameter is null.</exception>
20       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset">offset</paramref> parameter is less than zero.  
21  -or-  
22  The <paramref name="offset">offset</paramref> parameter is greater than the length of content specified by the <paramref name="content">content</paramref> parameter.  
23  -or-  
24  The <paramref name="count">count</paramref> parameter is less than zero.  
25  -or-  
26  The <paramref name="count">count</paramref> parameter is greater than the length of content specified by the <paramref name="content">content</paramref> parameter - minus the <paramref name="offset">offset</paramref> parameter.</exception>
27     </member>
28     <member name="M:System.Net.Http.ByteArrayContent.CreateContentReadStreamAsync">
29       <summary>Creates an HTTP content stream as an asynchronous operation for reading whose backing store is memory from the <see cref="T:System.Net.Http.ByteArrayContent"></see>.</summary>
30       <returns>The task object representing the asynchronous operation.</returns>
31     </member>
32     <member name="M:System.Net.Http.ByteArrayContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
33       <summary>Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.</summary>
34       <param name="stream">The target stream.</param>
35       <param name="context">Information about the transport, like channel binding token. This parameter may be null.</param>
36       <returns>The task object representing the asynchronous operation.</returns>
37     </member>
38     <member name="M:System.Net.Http.ByteArrayContent.TryComputeLength(System.Int64@)">
39       <summary>Determines whether a byte array has a valid length in bytes.</summary>
40       <param name="length">The length in bytes of the byte array.</param>
41       <returns>true if <paramref name="length">length</paramref> is a valid length; otherwise, false.</returns>
42     </member>
43     <member name="T:System.Net.Http.ClientCertificateOption">
44       <summary>Specifies how client certificates are provided.</summary>
45     </member>
46     <member name="F:System.Net.Http.ClientCertificateOption.Automatic">
47       <summary>The <see cref="T:System.Net.Http.HttpClientHandler"></see> will attempt to provide  all available client certificates  automatically.</summary>
48       <returns></returns>
49     </member>
50     <member name="F:System.Net.Http.ClientCertificateOption.Manual">
51       <summary>The application manually provides the client certificates to the <see cref="T:System.Net.Http.WebRequestHandler"></see>. This value is the default.</summary>
52       <returns></returns>
53     </member>
54     <member name="T:System.Net.Http.DelegatingHandler">
55       <summary>A type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.</summary>
56     </member>
57     <member name="M:System.Net.Http.DelegatingHandler.#ctor">
58       <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler"></see> class.</summary>
59     </member>
60     <member name="M:System.Net.Http.DelegatingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
61       <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler"></see> class with a specific inner handler.</summary>
62       <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
63     </member>
64     <member name="M:System.Net.Http.DelegatingHandler.Dispose(System.Boolean)">
65       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.DelegatingHandler"></see>, and optionally disposes of the managed resources.</summary>
66       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
67     </member>
68     <member name="P:System.Net.Http.DelegatingHandler.InnerHandler">
69       <summary>Gets or sets the inner handler which processes the HTTP response messages.</summary>
70       <returns>The inner handler for HTTP response messages.</returns>
71     </member>
72     <member name="M:System.Net.Http.DelegatingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
73       <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
74       <param name="request">The HTTP request message to send to the server.</param>
75       <param name="cancellationToken">A cancellation token to cancel operation.</param>
76       <returns>The task object representing the asynchronous operation.</returns>
77       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> was null.</exception>
78     </member>
79     <member name="T:System.Net.Http.FormUrlEncodedContent">
80       <summary>A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.</summary>
81     </member>
82     <member name="M:System.Net.Http.FormUrlEncodedContent.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
83       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.FormUrlEncodedContent"></see> class with a specific collection of name/value pairs.</summary>
84       <param name="nameValueCollection">A collection of name/value pairs.</param>
85     </member>
86     <member name="T:System.Net.Http.Headers.AuthenticationHeaderValue">
87       <summary>Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.</summary>
88     </member>
89     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String)">
90       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> class.</summary>
91       <param name="scheme">The scheme to use for authorization.</param>
92     </member>
93     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String,System.String)">
94       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> class.</summary>
95       <param name="scheme">The scheme to use for authorization.</param>
96       <param name="parameter">The credentials containing the authentication information of the user agent for the resource being requested.</param>
97     </member>
98     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Equals(System.Object)">
99       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> object.</summary>
100       <param name="obj">The object to compare with the current object.</param>
101       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
102     </member>
103     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.GetHashCode">
104       <summary>Serves as a hash function for an  <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> object.</summary>
105       <returns>A hash code for the current object.</returns>
106     </member>
107     <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Parameter">
108       <summary>Gets the credentials containing the authentication information of the user agent for the resource being requested.</summary>
109       <returns>The credentials containing the authentication information.</returns>
110     </member>
111     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Parse(System.String)">
112       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> instance.</summary>
113       <param name="input">A string that represents authentication header value information.</param>
114       <returns>An <see cref="System.Net.Http.Headers.AuthenticationHeaderValue"></see> instance.</returns>
115       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
116       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid authentication header value information.</exception>
117     </member>
118     <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Scheme">
119       <summary>Gets the scheme to use for authorization.</summary>
120       <returns>The scheme to use for authorization.</returns>
121     </member>
122     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.ToString">
123       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> object.</summary>
124       <returns>A string that represents the current object.</returns>
125     </member>
126     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.TryParse(System.String,System.Net.Http.Headers.AuthenticationHeaderValue@)">
127       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> information.</summary>
128       <param name="input">The string to validate.</param>
129       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> version of the string.</param>
130       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.AuthenticationHeaderValue"></see> information; otherwise, false.</returns>
131     </member>
132     <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.System#ICloneable#Clone">
133       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue"></see> instance.</summary>
134       <returns>A copy of the current instance.</returns>
135     </member>
136     <member name="T:System.Net.Http.Headers.CacheControlHeaderValue">
137       <summary>Represents the value of the Cache-Control header.</summary>
138     </member>
139     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.#ctor">
140       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> class.</summary>
141     </member>
142     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Equals(System.Object)">
143       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> object.</summary>
144       <param name="obj">The object to compare with the current object.</param>
145       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
146     </member>
147     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Extensions">
148       <summary>Cache-extension tokens, each with an optional assigned value.</summary>
149       <returns>A collection of cache-extension tokens each with an optional assigned value.</returns>
150     </member>
151     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.GetHashCode">
152       <summary>Serves as a hash function for a  <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> object.</summary>
153       <returns>A hash code for the current object.</returns>
154     </member>
155     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxAge">
156       <summary>The maximum age, specified in seconds, that the HTTP client is willing to accept a response.</summary>
157       <returns>The time in seconds.</returns>
158     </member>
159     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStale">
160       <summary>Whether an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
161       <returns>true if the HTTP client is willing to accept a response that has exceed the expiration time; otherwise, false.</returns>
162     </member>
163     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStaleLimit">
164       <summary>The maximum time, in seconds, an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
165       <returns>The time in seconds.</returns>
166     </member>
167     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MinFresh">
168       <summary>The freshness lifetime, in seconds, that an HTTP client is willing to accept a response.</summary>
169       <returns>The time in seconds.</returns>
170     </member>
171     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MustRevalidate">
172       <summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale.</summary>
173       <returns>true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale; otherwise, false.</returns>
174     </member>
175     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCache">
176       <summary>Whether an HTTP client is willing to accept a cached response.</summary>
177       <returns>true if the HTTP client is willing to accept a cached response; otherwise, false.</returns>
178     </member>
179     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCacheHeaders">
180       <summary>A collection of fieldnames in the &amp;quot;no-cache&amp;quot; directive in a cache-control header field on an HTTP response.</summary>
181       <returns>A collection of fieldnames.</returns>
182     </member>
183     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoStore">
184       <summary>Whether a cache must not store any part of either the HTTP request mressage or any response.</summary>
185       <returns>true if a cache must not store any part of either the HTTP request mressage or any response; otherwise, false.</returns>
186     </member>
187     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoTransform">
188       <summary>Whether a cache or proxy must not change any aspect of the entity-body.</summary>
189       <returns>true if a cache or proxy must not change any aspect of the entity-body; otherwise, false.</returns>
190     </member>
191     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.OnlyIfCached">
192       <summary>Whether a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status.</summary>
193       <returns>true if a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status; otherwise, false.</returns>
194     </member>
195     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Parse(System.String)">
196       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> instance.</summary>
197       <param name="input">A string that represents cache-control header value information.</param>
198       <returns>A <see cref="System.Net.Http.Headers.CacheControlHeaderValue"></see> instance.</returns>
199       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
200       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid cache-control header value information.</exception>
201     </member>
202     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Private">
203       <summary>Whether all or part of the HTTP response message is intended for a single user and must not be cached by a shared cache.</summary>
204       <returns>true if the HTTP response message is intended for a single user and must not be cached by a shared cache; otherwise, false.</returns>
205     </member>
206     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.PrivateHeaders">
207       <summary>A collection fieldnames in the &amp;quot;private&amp;quot; directive in a cache-control header field on an HTTP response.</summary>
208       <returns>A collection of fieldnames.</returns>
209     </member>
210     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.ProxyRevalidate">
211       <summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale for shared user agent caches.</summary>
212       <returns>true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale for shared user agent caches; otherwise, false.</returns>
213     </member>
214     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Public">
215       <summary>Whether an HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache.</summary>
216       <returns>true if the HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache; otherwise, false.</returns>
217     </member>
218     <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.SharedMaxAge">
219       <summary>The shared maximum age, specified in seconds, in an HTTP response that overrides the &amp;quot;max-age&amp;quot; directive in a cache-control header or an Expires header for a shared cache.</summary>
220       <returns>The time in seconds.</returns>
221     </member>
222     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.ToString">
223       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> object.</summary>
224       <returns>A string that represents the current object.</returns>
225     </member>
226     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.TryParse(System.String,System.Net.Http.Headers.CacheControlHeaderValue@)">
227       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> information.</summary>
228       <param name="input">The string to validate.</param>
229       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> version of the string.</param>
230       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.CacheControlHeaderValue"></see> information; otherwise, false.</returns>
231     </member>
232     <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.System#ICloneable#Clone">
233       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue"></see> instance.</summary>
234       <returns>A copy of the current instance.</returns>
235     </member>
236     <member name="T:System.Net.Http.Headers.ContentDispositionHeaderValue">
237       <summary>Represents the value of the Content-Disposition header.</summary>
238     </member>
239     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.Net.Http.Headers.ContentDispositionHeaderValue)">
240       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> class.</summary>
241       <param name="source">A <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see>.</param>
242     </member>
243     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.String)">
244       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> class.</summary>
245       <param name="dispositionType">A string that contains a <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see>.</param>
246     </member>
247     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.CreationDate">
248       <summary>The date at which   the file was created.</summary>
249       <returns>The file creation date.</returns>
250     </member>
251     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.DispositionType">
252       <summary>The disposition type for a content body part.</summary>
253       <returns>The disposition type.</returns>
254     </member>
255     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Equals(System.Object)">
256       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> object.</summary>
257       <param name="obj">The object to compare with the current object.</param>
258       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
259     </member>
260     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileName">
261       <summary>A suggestion for how to construct a filename for   storing the message payload to be used if the entity is   detached and stored in a separate file.</summary>
262       <returns>A suggested filename.</returns>
263     </member>
264     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileNameStar">
265       <summary>A suggestion for how to construct filenames for   storing message payloads to be used if the entities are    detached and stored in a separate files.</summary>
266       <returns>A suggested filename of the form filename*.</returns>
267     </member>
268     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.GetHashCode">
269       <summary>Serves as a hash function for an  <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> object.</summary>
270       <returns>A hash code for the current object.</returns>
271     </member>
272     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ModificationDate">
273       <summary>The date at   which the file was last modified.</summary>
274       <returns>The file modification date.</returns>
275     </member>
276     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Name">
277       <summary>The name for a content body part.</summary>
278       <returns>The name for the content body part.</returns>
279     </member>
280     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Parameters">
281       <summary>A set of parameters included the Content-Disposition header.</summary>
282       <returns>A collection of parameters.</returns>
283     </member>
284     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Parse(System.String)">
285       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> instance.</summary>
286       <param name="input">A string that represents content disposition header value information.</param>
287       <returns>An <see cref="System.Net.Http.Headers.ContentDispositionHeaderValue"></see> instance.</returns>
288       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
289       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid content disposition header value information.</exception>
290     </member>
291     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ReadDate">
292       <summary>The date the file was last read.</summary>
293       <returns>The last read date.</returns>
294     </member>
295     <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Size">
296       <summary>The approximate size, in bytes, of the file.</summary>
297       <returns>The approximate size, in bytes.</returns>
298     </member>
299     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.ToString">
300       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> object.</summary>
301       <returns>A string that represents the current object.</returns>
302     </member>
303     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentDispositionHeaderValue@)">
304       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> information.</summary>
305       <param name="input">The string to validate.</param>
306       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> version of the string.</param>
307       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.ContentDispositionHeaderValue"></see> information; otherwise, false.</returns>
308     </member>
309     <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.System#ICloneable#Clone">
310       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue"></see> instance.</summary>
311       <returns>A copy of the current instance.</returns>
312     </member>
313     <member name="T:System.Net.Http.Headers.ContentRangeHeaderValue">
314       <summary>Represents the value of the Content-Range header.</summary>
315     </member>
316     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64)">
317       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> class.</summary>
318       <param name="length">The starting or ending point of the range, in bytes.</param>
319     </member>
320     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64)">
321       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> class.</summary>
322       <param name="from">The position, in bytes, at which to start sending data.</param>
323       <param name="to">The position, in bytes, at which to stop sending data.</param>
324     </member>
325     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64,System.Int64)">
326       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> class.</summary>
327       <param name="from">The position, in bytes, at which to start sending data.</param>
328       <param name="to">The position, in bytes, at which to stop sending data.</param>
329       <param name="length">The starting or ending point of the range, in bytes.</param>
330     </member>
331     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Equals(System.Object)">
332       <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> object.</summary>
333       <param name="obj">The object to compare with the current object.</param>
334       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
335     </member>
336     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.From">
337       <summary>Gets the position at which to start sending data.</summary>
338       <returns>The position, in bytes, at which to start sending data.</returns>
339     </member>
340     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.GetHashCode">
341       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> object.</summary>
342       <returns>A hash code for the current object.</returns>
343     </member>
344     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasLength">
345       <summary>Gets whether the Content-Range header has a length specified.</summary>
346       <returns>true if the Content-Range has a length specified; otherwise, false.</returns>
347     </member>
348     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasRange">
349       <summary>Gets whether the Content-Range has a range specified.</summary>
350       <returns>true if the Content-Range has a range specified; otherwise, false.</returns>
351     </member>
352     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Length">
353       <summary>Gets the length of the full entity-body.</summary>
354       <returns>The length of the full entity-body.</returns>
355     </member>
356     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Parse(System.String)">
357       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> instance.</summary>
358       <param name="input">A string that represents content range header value information.</param>
359       <returns>An <see cref="System.Net.Http.Headers.ContentRangeHeaderValue"></see> instance.</returns>
360       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
361       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid content range header value information.</exception>
362     </member>
363     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.To">
364       <summary>Gets the position at which to stop sending data.</summary>
365       <returns>The position at which to stop sending data.</returns>
366     </member>
367     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.ToString">
368       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> object.</summary>
369       <returns>A string that represents the current object.</returns>
370     </member>
371     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentRangeHeaderValue@)">
372       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> information.</summary>
373       <param name="input">The string to validate.</param>
374       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> version of the string.</param>
375       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.ContentRangeHeaderValue"></see> information; otherwise, false.</returns>
376     </member>
377     <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Unit">
378       <summary>The range units used.</summary>
379       <returns>A <see cref="System.String"></see> that contains range units.</returns>
380     </member>
381     <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.System#ICloneable#Clone">
382       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue"></see> instance.</summary>
383       <returns>A copy of the current instance.</returns>
384     </member>
385     <member name="T:System.Net.Http.Headers.EntityTagHeaderValue">
386       <summary>Represents an entity-tag header value.</summary>
387     </member>
388     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String)">
389       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> class.</summary>
390       <param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see>.</param>
391     </member>
392     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String,System.Boolean)">
393       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> class.</summary>
394       <param name="tag">A string that contains an  <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see>.</param>
395       <param name="isWeak">A value that indicates if this entity-tag header is a weak validator. If the entity-tag header is weak validator, then isWeak should be set to true. If the entity-tag header is a strong validator, then isWeak should be set to false.</param>
396     </member>
397     <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Any">
398       <summary>Gets the entity-tag header value.</summary>
399       <returns>Returns <see cref="System.Net.Http.Headers.EntityTagHeaderValue"></see>.</returns>
400     </member>
401     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)">
402       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> object.</summary>
403       <param name="obj">The object to compare with the current object.</param>
404       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
405     </member>
406     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.GetHashCode">
407       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> object.</summary>
408       <returns>A hash code for the current object.</returns>
409     </member>
410     <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.IsWeak">
411       <summary>Gets whether the entity-tag is prefaced by a weakness indicator.</summary>
412       <returns>true if the entity-tag is prefaced by a weakness indicator; otherwise, false.</returns>
413     </member>
414     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Parse(System.String)">
415       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> instance.</summary>
416       <param name="input">A string that represents entity tag header value information.</param>
417       <returns>An <see cref="System.Net.Http.Headers.EntityTagHeaderValue"></see> instance.</returns>
418       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
419       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid entity tag header value information.</exception>
420     </member>
421     <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Tag">
422       <summary>Gets the opaque quoted string.</summary>
423       <returns>An opaque quoted string.</returns>
424     </member>
425     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.ToString">
426       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> object.</summary>
427       <returns>A string that represents the current object.</returns>
428     </member>
429     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.TryParse(System.String,System.Net.Http.Headers.EntityTagHeaderValue@)">
430       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> information.</summary>
431       <param name="input">The string to validate.</param>
432       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> version of the string.</param>
433       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.EntityTagHeaderValue"></see> information; otherwise, false.</returns>
434     </member>
435     <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.System#ICloneable#Clone">
436       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> instance.</summary>
437       <returns>A copy of the current instance.</returns>
438     </member>
439     <member name="T:System.Net.Http.Headers.HttpContentHeaders">
440       <summary>Represents the collection of Content Headers as defined in RFC 2616.</summary>
441     </member>
442     <member name="P:System.Net.Http.Headers.HttpContentHeaders.Allow">
443       <summary>Gets the value of the Allow content header on an HTTP response.</summary>
444       <returns>The value of the Allow header on an HTTP response.</returns>
445     </member>
446     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentDisposition">
447       <summary>Gets the value of the Content-Disposition content header on an HTTP response.</summary>
448       <returns>The value of the Content-Disposition content header on an HTTP response.</returns>
449     </member>
450     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentEncoding">
451       <summary>Gets the value of the Content-Encoding content header on an HTTP response.</summary>
452       <returns>The value of the Content-Encoding content header on an HTTP response.</returns>
453     </member>
454     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLanguage">
455       <summary>Gets the value of the Content-Language content header on an HTTP response.</summary>
456       <returns>The value of the Content-Language content header on an HTTP response.</returns>
457     </member>
458     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLength">
459       <summary>Gets or sets the value of the Content-Length content header on an HTTP response.</summary>
460       <returns>The value of the Content-Length content header on an HTTP response.</returns>
461     </member>
462     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLocation">
463       <summary>Gets or sets the value of the Content-Location content header on an HTTP response.</summary>
464       <returns>The value of the Content-Location content header on an HTTP response.</returns>
465     </member>
466     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentMD5">
467       <summary>Gets or sets the value of the Content-MD5 content header on an HTTP response.</summary>
468       <returns>The value of the Content-MD5 content header on an HTTP response.</returns>
469     </member>
470     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentRange">
471       <summary>Gets or sets the value of the Content-Range content header on an HTTP response.</summary>
472       <returns>The value of the Content-Range content header on an HTTP response.</returns>
473     </member>
474     <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentType">
475       <summary>Gets or sets the value of the Content-Type content header on an HTTP response.</summary>
476       <returns>The value of the Content-Type content header on an HTTP response.</returns>
477     </member>
478     <member name="P:System.Net.Http.Headers.HttpContentHeaders.Expires">
479       <summary>Gets or sets the value of the Expires content header on an HTTP response.</summary>
480       <returns>The value of the Expires content header on an HTTP response.</returns>
481     </member>
482     <member name="P:System.Net.Http.Headers.HttpContentHeaders.LastModified">
483       <summary>Gets or sets the value of the Last-Modified content header on an HTTP response.</summary>
484       <returns>The value of the Last-Modified content header on an HTTP response.</returns>
485     </member>
486     <member name="T:System.Net.Http.Headers.HttpHeaders">
487       <summary>A collection of headers and their values as defined in RFC 2616.</summary>
488     </member>
489     <member name="M:System.Net.Http.Headers.HttpHeaders.#ctor">
490       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> class.</summary>
491     </member>
492     <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.Collections.Generic.IEnumerable{System.String})">
493       <summary>Adds the specified header and its values into the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
494       <param name="name">The header to add to the collection.</param>
495       <param name="values">A list of header values to add to the collection.</param>
496     </member>
497     <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.String)">
498       <summary>Adds the specified header and its value into the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
499       <param name="name">The header to add to the collection.</param>
500       <param name="value">The content of the header.</param>
501     </member>
502     <member name="M:System.Net.Http.Headers.HttpHeaders.Clear">
503       <summary>Removes all headers from the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
504     </member>
505     <member name="M:System.Net.Http.Headers.HttpHeaders.Contains(System.String)">
506       <summary>Returns if  a specific header exists in the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
507       <param name="name">The specific header.</param>
508       <returns>true is the specified header exists in the collection; otherwise false.</returns>
509     </member>
510     <member name="M:System.Net.Http.Headers.HttpHeaders.GetEnumerator">
511       <summary>Returns an enumerator that can iterate through the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> instance.</summary>
512       <returns>An enumerator for the <see cref="System.Net.Http.Headers.HttpHeaders"></see>.</returns>
513     </member>
514     <member name="M:System.Net.Http.Headers.HttpHeaders.GetValues(System.String)">
515       <summary>Returns all header values for a specified header stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
516       <param name="name">The specified header to return values for.</param>
517       <returns>An array of header strings.</returns>
518     </member>
519     <member name="M:System.Net.Http.Headers.HttpHeaders.Remove(System.String)">
520       <summary>Removes the specified header from the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
521       <param name="name">The name of the header to remove from the collection.</param>
522       <returns>Returns <see cref="System.Boolean"></see>.</returns>
523     </member>
524     <member name="M:System.Net.Http.Headers.HttpHeaders.ToString">
525       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> object.</summary>
526       <returns>A string that represents the current object.</returns>
527     </member>
528     <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.Collections.Generic.IEnumerable{System.String})">
529       <summary>Returns a value that indicates whether the specified header and its values were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection without validating the provided information.</summary>
530       <param name="name">The header to add to the collection.</param>
531       <param name="values">The values of the header.</param>
532       <returns>true if the specified header <paramref name="name">name</paramref> and <paramref name="values">values</paramref> could be added to the collection; otherwise false.</returns>
533     </member>
534     <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.String)">
535       <summary>Returns a value that indicates whether the specified header and its value were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection without validating the provided information.</summary>
536       <param name="name">The header to add to the collection.</param>
537       <param name="value">The content of the header.</param>
538       <returns>true if the specified header <paramref name="name">name</paramref> and <paramref name="value">value</paramref> could be added to the collection; otherwise false.</returns>
539     </member>
540     <member name="M:System.Net.Http.Headers.HttpHeaders.TryGetValues(System.String,System.Collections.Generic.IEnumerable{System.String}@)">
541       <summary>Return if a specified header and specified values are stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders"></see> collection.</summary>
542       <param name="name">The specified header.</param>
543       <param name="values">The specified header values.</param>
544       <returns>true is the specified header <paramref name="name">name</paramref> and values are stored in the collection; otherwise false.</returns>
545     </member>
546     <member name="M:System.Net.Http.Headers.HttpHeaders.System#Collections#IEnumerable#GetEnumerator">
547       <summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders"></see>.</summary>
548       <returns>An instance of an implementation of an <see cref="System.Collections.IEnumerator"></see> that can iterate through a <see cref="System.Net.Http.Headers.HttpHeaders"></see>.</returns>
549     </member>
550     <member name="T:System.Net.Http.Headers.HttpHeaderValueCollection`1">
551       <summary>Represents a collection of header values.</summary>
552       <typeparam name="T">The header collection type.</typeparam>
553     </member>
554     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Add(`0)">
555       <summary>Adds an entry to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
556       <param name="item">The item to add to the header collection.</param>
557     </member>
558     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Clear">
559       <summary>Removes all entries from the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
560     </member>
561     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Contains(`0)">
562       <summary>Determines if the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> contains an item.</summary>
563       <param name="item">The item to find to the header collection.</param>
564       <returns>true if the entry is contained in the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance; otherwise, false</returns>
565     </member>
566     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.CopyTo(`0[],System.Int32)">
567       <summary>Copies the entire <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> to a compatible one-dimensional <see cref="T:System.Array"></see>, starting at the specified index of the target array.</summary>
568       <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
569       <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
570     </member>
571     <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.Count">
572       <summary>Gets the number of headers in the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
573       <returns>The number of headers in a collection</returns>
574     </member>
575     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.GetEnumerator">
576       <summary>Returns an enumerator that iterates through the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
577       <returns>An enumerator for the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance.</returns>
578     </member>
579     <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.IsReadOnly">
580       <summary>Gets a value indicating whether the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance is read-only.</summary>
581       <returns>true if the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance is read-only; otherwise, false.</returns>
582     </member>
583     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ParseAdd(System.String)">
584       <summary>Parses and adds an entry to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
585       <param name="input">The entry to add.</param>
586     </member>
587     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Remove(`0)">
588       <summary>Removes the specified item from the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
589       <param name="item">The item to remove.</param>
590       <returns>true if the <paramref name="item">item</paramref> was removed from the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance; otherwise, false</returns>
591     </member>
592     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ToString">
593       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> object. object.</summary>
594       <returns>A string that represents the current object.</returns>
595     </member>
596     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.TryParseAdd(System.String)">
597       <summary>Determines whether the input could be parsed and added to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
598       <param name="input">The entry to validate.</param>
599       <returns>true if the <paramref name="input">input</paramref> could be parsed and added to the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance; otherwise, false</returns>
600     </member>
601     <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.System#Collections#IEnumerable#GetEnumerator">
602       <summary>Returns an enumerator that iterates through the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.</summary>
603       <returns>An enumerator for the <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see> instance.</returns>
604     </member>
605     <member name="T:System.Net.Http.Headers.HttpRequestHeaders">
606       <summary>Represents the collection of Request Headers as defined in RFC 2616.</summary>
607     </member>
608     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Accept">
609       <summary>Gets the value of the Accept header for an HTTP request.</summary>
610       <returns>The value of the Accept header for an HTTP request.</returns>
611     </member>
612     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptCharset">
613       <summary>Gets the value of the Accept-Charset header for an HTTP request.</summary>
614       <returns>The value of the Accept-Charset header for an HTTP request.</returns>
615     </member>
616     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptEncoding">
617       <summary>Gets the value of the Accept-Encoding header for an HTTP request.</summary>
618       <returns>The value of the Accept-Encoding header for an HTTP request.</returns>
619     </member>
620     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptLanguage">
621       <summary>Gets the value of the Accept-Language header for an HTTP request.</summary>
622       <returns>The value of the Accept-Language header for an HTTP request.</returns>
623     </member>
624     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Authorization">
625       <summary>Gets or sets the value of the Authorization header for an HTTP request.</summary>
626       <returns>The value of the Authorization header for an HTTP request.</returns>
627     </member>
628     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.CacheControl">
629       <summary>Gets or sets the value of the Cache-Control header for an HTTP request.</summary>
630       <returns>The value of the Cache-Control header for an HTTP request.</returns>
631     </member>
632     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Connection">
633       <summary>Gets the value of the Connection header for an HTTP request.</summary>
634       <returns>The value of the Connection header for an HTTP request.</returns>
635     </member>
636     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ConnectionClose">
637       <summary>Gets or sets a value that indicates if the Connection header for an HTTP request contains Close.</summary>
638       <returns>true if the Connection header contains Close, otherwise false.</returns>
639     </member>
640     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Date">
641       <summary>Gets or sets the value of the Date header for an HTTP request.</summary>
642       <returns>The value of the Date header for an HTTP request.</returns>
643     </member>
644     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Expect">
645       <summary>Gets the value of the Expect header for an HTTP request.</summary>
646       <returns>The value of the Expect header for an HTTP request.</returns>
647     </member>
648     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ExpectContinue">
649       <summary>Gets or sets a value that indicates if the Expect header for an HTTP request contains Continue.</summary>
650       <returns>true if the Expect header contains Continue, otherwise false.</returns>
651     </member>
652     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.From">
653       <summary>Gets or sets the value of the From header for an HTTP request.</summary>
654       <returns>The value of the From header for an HTTP request.</returns>
655     </member>
656     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Host">
657       <summary>Gets or sets the value of the Host header for an HTTP request.</summary>
658       <returns>The value of the Host header for an HTTP request.</returns>
659     </member>
660     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfMatch">
661       <summary>Gets the value of the If-Match header for an HTTP request.</summary>
662       <returns>Returns <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.  
663  The value of the If-Match header for an HTTP request.</returns>
664     </member>
665     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfModifiedSince">
666       <summary>Gets or sets the value of the If-Modified-Since header for an HTTP request.</summary>
667       <returns>The value of the If-Modified-Since header for an HTTP request.</returns>
668     </member>
669     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfNoneMatch">
670       <summary>Gets the value of the If-None-Match header for an HTTP request.</summary>
671       <returns>Gets the value of the If-None-Match header for an HTTP request.</returns>
672     </member>
673     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfRange">
674       <summary>Gets or sets the value of the If-Range header for an HTTP request.</summary>
675       <returns>The value of the If-Range header for an HTTP request.</returns>
676     </member>
677     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfUnmodifiedSince">
678       <summary>Gets or sets the value of the If-Unmodified-Since header for an HTTP request.</summary>
679       <returns>The value of the If-Unmodified-Since header for an HTTP request.</returns>
680     </member>
681     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.MaxForwards">
682       <summary>Gets or sets the value of the Max-Forwards header for an HTTP request.</summary>
683       <returns>The value of the Max-Forwards header for an HTTP request.</returns>
684     </member>
685     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Pragma">
686       <summary>Gets the value of the Pragma header for an HTTP request.</summary>
687       <returns>The value of the Pragma header for an HTTP request.</returns>
688     </member>
689     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ProxyAuthorization">
690       <summary>Gets or sets the value of the Proxy-Authorization header for an HTTP request.</summary>
691       <returns>The value of the Proxy-Authorization header for an HTTP request.</returns>
692     </member>
693     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Range">
694       <summary>Gets or sets the value of the Range header for an HTTP request.</summary>
695       <returns>The value of the Range header for an HTTP request.</returns>
696     </member>
697     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Referrer">
698       <summary>Gets or sets the value of the Referer header for an HTTP request.</summary>
699       <returns>The value of the Referer header for an HTTP request.</returns>
700     </member>
701     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TE">
702       <summary>Gets the value of the TE header for an HTTP request.</summary>
703       <returns>The value of the TE header for an HTTP request.</returns>
704     </member>
705     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Trailer">
706       <summary>Gets the value of the Trailer header for an HTTP request.</summary>
707       <returns>The value of the Trailer header for an HTTP request.</returns>
708     </member>
709     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncoding">
710       <summary>Gets the value of the Transfer-Encoding header for an HTTP request.</summary>
711       <returns>The value of the Transfer-Encoding header for an HTTP request.</returns>
712     </member>
713     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncodingChunked">
714       <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP request contains chunked.</summary>
715       <returns>true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
716     </member>
717     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Upgrade">
718       <summary>Gets the value of the Upgrade header for an HTTP request.</summary>
719       <returns>The value of the Upgrade header for an HTTP request.</returns>
720     </member>
721     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.UserAgent">
722       <summary>Gets the value of the User-Agent header for an HTTP request.</summary>
723       <returns>The value of the User-Agent header for an HTTP request.</returns>
724     </member>
725     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Via">
726       <summary>Gets the value of the Via header for an HTTP request.</summary>
727       <returns>The value of the Via header for an HTTP request.</returns>
728     </member>
729     <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Warning">
730       <summary>Gets the value of the Warning header for an HTTP request.</summary>
731       <returns>The value of the Warning header for an HTTP request.</returns>
732     </member>
733     <member name="T:System.Net.Http.Headers.HttpResponseHeaders">
734       <summary>Represents the collection of Response Headers as defined in RFC 2616.</summary>
735     </member>
736     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.AcceptRanges">
737       <summary>Gets the value of the Accept-Ranges header for an HTTP response.</summary>
738       <returns>The value of the Accept-Ranges header for an HTTP response.</returns>
739     </member>
740     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Age">
741       <summary>Gets or sets the value of the Age header for an HTTP response.</summary>
742       <returns>The value of the Age header for an HTTP response.</returns>
743     </member>
744     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.CacheControl">
745       <summary>Gets or sets the value of the Cache-Control header for an HTTP response.</summary>
746       <returns>The value of the Cache-Control header for an HTTP response.</returns>
747     </member>
748     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Connection">
749       <summary>Gets the value of the Connection header for an HTTP response.</summary>
750       <returns>The value of the Connection header for an HTTP response.</returns>
751     </member>
752     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ConnectionClose">
753       <summary>Gets or sets a value that indicates if the Connection header for an HTTP response contains Close.</summary>
754       <returns>true if the Connection header contains Close, otherwise false.</returns>
755     </member>
756     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Date">
757       <summary>Gets or sets the value of the Date header for an HTTP response.</summary>
758       <returns>The value of the Date header for an HTTP response.</returns>
759     </member>
760     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ETag">
761       <summary>Gets or sets the value of the ETag header for an HTTP response.</summary>
762       <returns>The value of the ETag header for an HTTP response.</returns>
763     </member>
764     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Location">
765       <summary>Gets or sets the value of the Location header for an HTTP response.</summary>
766       <returns>The value of the Location header for an HTTP response.</returns>
767     </member>
768     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Pragma">
769       <summary>Gets the value of the Pragma header for an HTTP response.</summary>
770       <returns>Returns <see cref="System.Net.Http.Headers.HttpHeaderValueCollection`1"></see>.  
771  The value of the Pragma header for an HTTP response.</returns>
772     </member>
773     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ProxyAuthenticate">
774       <summary>Gets the value of the Proxy-Authenticate header for an HTTP response.</summary>
775       <returns>The value of the Proxy-Authenticate header for an HTTP response.</returns>
776     </member>
777     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.RetryAfter">
778       <summary>Gets or sets the value of the Retry-After header for an HTTP response.</summary>
779       <returns>The value of the Retry-After header for an HTTP response.</returns>
780     </member>
781     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Server">
782       <summary>Gets the value of the Server header for an HTTP response.</summary>
783       <returns>The value of the Server header for an HTTP response.</returns>
784     </member>
785     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Trailer">
786       <summary>Gets the value of the Trailer header for an HTTP response.</summary>
787       <returns>The value of the Trailer header for an HTTP response.</returns>
788     </member>
789     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncoding">
790       <summary>Gets the value of the Transfer-Encoding header for an HTTP response.</summary>
791       <returns>The value of the Transfer-Encoding header for an HTTP response.</returns>
792     </member>
793     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncodingChunked">
794       <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP response contains chunked.</summary>
795       <returns>true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
796     </member>
797     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Upgrade">
798       <summary>Gets the value of the Upgrade header for an HTTP response.</summary>
799       <returns>The value of the Upgrade header for an HTTP response.</returns>
800     </member>
801     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Vary">
802       <summary>Gets the value of the Vary header for an HTTP response.</summary>
803       <returns>The value of the Vary header for an HTTP response.</returns>
804     </member>
805     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Via">
806       <summary>Gets the value of the Via header for an HTTP response.</summary>
807       <returns>The value of the Via header for an HTTP response.</returns>
808     </member>
809     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Warning">
810       <summary>Gets the value of the Warning header for an HTTP response.</summary>
811       <returns>The value of the Warning header for an HTTP response.</returns>
812     </member>
813     <member name="P:System.Net.Http.Headers.HttpResponseHeaders.WwwAuthenticate">
814       <summary>Gets the value of the WWW-Authenticate header for an HTTP response.</summary>
815       <returns>The value of the WWW-Authenticate header for an HTTP response.</returns>
816     </member>
817     <member name="T:System.Net.Http.Headers.MediaTypeHeaderValue">
818       <summary>Represents a media type used in a Content-Type header as defined in the RFC 2616.</summary>
819     </member>
820     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue)">
821       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> class.</summary>
822       <param name="source">A <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> object used to initialize the new instance.</param>
823     </member>
824     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.String)">
825       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> class.</summary>
826       <param name="mediaType">The source represented as a string to initialize the new instance.</param>
827     </member>
828     <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.CharSet">
829       <summary>Gets or sets the character set.</summary>
830       <returns>The character set.</returns>
831     </member>
832     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Equals(System.Object)">
833       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> object.</summary>
834       <param name="obj">The object to compare with the current object.</param>
835       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
836     </member>
837     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.GetHashCode">
838       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> object.</summary>
839       <returns>A hash code for the current object.</returns>
840     </member>
841     <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.MediaType">
842       <summary>Gets or sets the media-type header value.</summary>
843       <returns>The media-type header value.</returns>
844     </member>
845     <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.Parameters">
846       <summary>Gets or sets the media-type header value parameters.</summary>
847       <returns>The media-type header value parameters.</returns>
848     </member>
849     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Parse(System.String)">
850       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> instance.</summary>
851       <param name="input">A string that represents media type header value information.</param>
852       <returns>A <see cref="System.Net.Http.Headers.MediaTypeHeaderValue"></see> instance.</returns>
853       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
854       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid media type header value information.</exception>
855     </member>
856     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.ToString">
857       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> object.</summary>
858       <returns>A string that represents the current object.</returns>
859     </member>
860     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeHeaderValue@)">
861       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> information.</summary>
862       <param name="input">The string to validate.</param>
863       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> version of the string.</param>
864       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.MediaTypeHeaderValue"></see> information; otherwise, false.</returns>
865     </member>
866     <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.System#ICloneable#Clone">
867       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue"></see> instance.</summary>
868       <returns>A copy of the current instance.</returns>
869     </member>
870     <member name="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue">
871       <summary>Represents a media type with an additional quality factor used in a Content-Type header.</summary>
872     </member>
873     <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String)">
874       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> class.</summary>
875       <param name="mediaType">A <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> represented as string to initialize the new instance.</param>
876     </member>
877     <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String,System.Double)">
878       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> class.</summary>
879       <param name="mediaType">A <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> represented as string to initialize the new instance.</param>
880       <param name="quality">The quality associated with this header value.</param>
881     </member>
882     <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse(System.String)">
883       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> instance.</summary>
884       <param name="input">A string that represents media type with quality header value information.</param>
885       <returns>A <see cref="System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> instance.</returns>
886       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
887       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid media type with quality header value information.</exception>
888     </member>
889     <member name="P:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Quality">
890       <summary>Get or set the quality value for the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see>.</summary>
891       <returns>The quality value for the <see cref="System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> object.</returns>
892     </member>
893     <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeWithQualityHeaderValue@)">
894       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> information.</summary>
895       <param name="input">The string to validate.</param>
896       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> version of the string.</param>
897       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> information; otherwise, false.</returns>
898     </member>
899     <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.System#ICloneable#Clone">
900       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue"></see> instance.</summary>
901       <returns>A copy of the current instance.</returns>
902     </member>
903     <member name="T:System.Net.Http.Headers.NameValueHeaderValue">
904       <summary>Represents a name/value pair used in various headers as defined in RFC 2616.</summary>
905     </member>
906     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.Net.Http.Headers.NameValueHeaderValue)">
907       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> class.</summary>
908       <param name="source">A <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> object used to initialize the new instance.</param>
909     </member>
910     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String)">
911       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> class.</summary>
912       <param name="name">The header name.</param>
913     </member>
914     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String,System.String)">
915       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> class.</summary>
916       <param name="name">The header name.</param>
917       <param name="value">The header value.</param>
918     </member>
919     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Equals(System.Object)">
920       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> object.</summary>
921       <param name="obj">The object to compare with the current object.</param>
922       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
923     </member>
924     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.GetHashCode">
925       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> object.</summary>
926       <returns>A hash code for the current object.</returns>
927     </member>
928     <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Name">
929       <summary>Gets the header name.</summary>
930       <returns>The header name.</returns>
931     </member>
932     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Parse(System.String)">
933       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> instance.</summary>
934       <param name="input">A string that represents name value header value information.</param>
935       <returns>A <see cref="System.Net.Http.Headers.NameValueHeaderValue"></see> instance.</returns>
936       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
937       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid name value header value information.</exception>
938     </member>
939     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.ToString">
940       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> object.</summary>
941       <returns>A string that represents the current object.</returns>
942     </member>
943     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueHeaderValue@)">
944       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> information.</summary>
945       <param name="input">The string to validate.</param>
946       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> version of the string.</param>
947       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.NameValueHeaderValue"></see> information; otherwise, false.</returns>
948     </member>
949     <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Value">
950       <summary>Gets the header value.</summary>
951       <returns>The header value.</returns>
952     </member>
953     <member name="M:System.Net.Http.Headers.NameValueHeaderValue.System#ICloneable#Clone">
954       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue"></see> instance.</summary>
955       <returns>A copy of the current instance.</returns>
956     </member>
957     <member name="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue">
958       <summary>Represents a name/value pair with parameters used in various headers as defined in RFC 2616.</summary>
959     </member>
960     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.Net.Http.Headers.NameValueWithParametersHeaderValue)">
961       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> class.</summary>
962       <param name="source">A <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> object used to initialize the new instance.</param>
963     </member>
964     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String)">
965       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> class.</summary>
966       <param name="name">The header name.</param>
967     </member>
968     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String,System.String)">
969       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> class.</summary>
970       <param name="name">The header name.</param>
971       <param name="value">The header value.</param>
972     </member>
973     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Equals(System.Object)">
974       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> object.</summary>
975       <param name="obj">The object to compare with the current object.</param>
976       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
977     </member>
978     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.GetHashCode">
979       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> object.</summary>
980       <returns>A hash code for the current object.</returns>
981     </member>
982     <member name="P:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parameters">
983       <summary>Gets the parameters from the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> object.</summary>
984       <returns>A collection containing the parameters.</returns>
985     </member>
986     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parse(System.String)">
987       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> instance.</summary>
988       <param name="input">A string that represents name value with parameter header value information.</param>
989       <returns>A <see cref="System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> instance.</returns>
990       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
991       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid name value with parameter header value information.</exception>
992     </member>
993     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.ToString">
994       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> object.</summary>
995       <returns>A string that represents the current object.</returns>
996     </member>
997     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueWithParametersHeaderValue@)">
998       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> information.</summary>
999       <param name="input">The string to validate.</param>
1000       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> version of the string.</param>
1001       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> information; otherwise, false.</returns>
1002     </member>
1003     <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.System#ICloneable#Clone">
1004       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue"></see> instance.</summary>
1005       <returns>A copy of the current instance.</returns>
1006     </member>
1007     <member name="T:System.Net.Http.Headers.ProductHeaderValue">
1008       <summary>Represents a product token value in a User-Agent header.</summary>
1009     </member>
1010     <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String)">
1011       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> class.</summary>
1012       <param name="name">The product name.</param>
1013     </member>
1014     <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String,System.String)">
1015       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> class.</summary>
1016       <param name="name">The product name value.</param>
1017       <param name="version">The product version value.</param>
1018     </member>
1019     <member name="M:System.Net.Http.Headers.ProductHeaderValue.Equals(System.Object)">
1020       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> object.</summary>
1021       <param name="obj">The object to compare with the current object.</param>
1022       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1023     </member>
1024     <member name="M:System.Net.Http.Headers.ProductHeaderValue.GetHashCode">
1025       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> object.</summary>
1026       <returns>A hash code for the current object.</returns>
1027     </member>
1028     <member name="P:System.Net.Http.Headers.ProductHeaderValue.Name">
1029       <summary>Gets the name of the product token.</summary>
1030       <returns>The name of the product token.</returns>
1031     </member>
1032     <member name="M:System.Net.Http.Headers.ProductHeaderValue.Parse(System.String)">
1033       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> instance.</summary>
1034       <param name="input">A string that represents product header value information.</param>
1035       <returns>A <see cref="System.Net.Http.Headers.ProductHeaderValue"></see> instance.</returns>
1036     </member>
1037     <member name="M:System.Net.Http.Headers.ProductHeaderValue.ToString">
1038       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> object.</summary>
1039       <returns>A string that represents the current object.</returns>
1040     </member>
1041     <member name="M:System.Net.Http.Headers.ProductHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductHeaderValue@)">
1042       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> information.</summary>
1043       <param name="input">The string to validate.</param>
1044       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> version of the string.</param>
1045       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.ProductHeaderValue"></see> information; otherwise, false.</returns>
1046     </member>
1047     <member name="P:System.Net.Http.Headers.ProductHeaderValue.Version">
1048       <summary>Gets the version of the product token.</summary>
1049       <returns>The version of the product token.</returns>
1050     </member>
1051     <member name="M:System.Net.Http.Headers.ProductHeaderValue.System#ICloneable#Clone">
1052       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue"></see> instance.</summary>
1053       <returns>A copy of the current instance.</returns>
1054     </member>
1055     <member name="T:System.Net.Http.Headers.ProductInfoHeaderValue">
1056       <summary>Represents a value which can either be a product or a comment in a User-Agent header.</summary>
1057     </member>
1058     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.Net.Http.Headers.ProductHeaderValue)">
1059       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> class.</summary>
1060       <param name="product">A <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object used to initialize the new instance.</param>
1061     </member>
1062     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String)">
1063       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> class.</summary>
1064       <param name="comment">A comment value.</param>
1065     </member>
1066     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String,System.String)">
1067       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> class.</summary>
1068       <param name="productName">The product name value.</param>
1069       <param name="productVersion">The product version value.</param>
1070     </member>
1071     <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Comment">
1072       <summary>Gets the comment from the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object.</summary>
1073       <returns>The comment value this <see cref="System.Net.Http.Headers.ProductInfoHeaderValue"></see>.</returns>
1074     </member>
1075     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Equals(System.Object)">
1076       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object.</summary>
1077       <param name="obj">The object to compare with the current object.</param>
1078       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1079     </member>
1080     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.GetHashCode">
1081       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object.</summary>
1082       <returns>A hash code for the current object.</returns>
1083     </member>
1084     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Parse(System.String)">
1085       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> instance.</summary>
1086       <param name="input">A string that represents product info header value information.</param>
1087       <returns>A <see cref="System.Net.Http.Headers.ProductInfoHeaderValue"></see> instance.</returns>
1088       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1089       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid product info header value information.</exception>
1090     </member>
1091     <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Product">
1092       <summary>Gets the product from the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object.</summary>
1093       <returns>The product value from this <see cref="System.Net.Http.Headers.ProductInfoHeaderValue"></see>.</returns>
1094     </member>
1095     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.ToString">
1096       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> object.</summary>
1097       <returns>A string that represents the current object.</returns>
1098     </member>
1099     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductInfoHeaderValue@)">
1100       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> information.</summary>
1101       <param name="input">The string to validate.</param>
1102       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> version of the string.</param>
1103       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.ProductInfoHeaderValue"></see> information; otherwise, false.</returns>
1104     </member>
1105     <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.System#ICloneable#Clone">
1106       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue"></see> instance.</summary>
1107       <returns>A copy of the current instance.</returns>
1108     </member>
1109     <member name="T:System.Net.Http.Headers.RangeConditionHeaderValue">
1110       <summary>Represents an If-Range header value which can either be a date/time or an entity-tag value.</summary>
1111     </member>
1112     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.DateTimeOffset)">
1113       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> class.</summary>
1114       <param name="date">A date value used to initialize the new instance.</param>
1115     </member>
1116     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.Net.Http.Headers.EntityTagHeaderValue)">
1117       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> class.</summary>
1118       <param name="entityTag">An <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue"></see> object used to initialize the new instance.</param>
1119     </member>
1120     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.String)">
1121       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> class.</summary>
1122       <param name="entityTag">An entity tag represented as a string used to initialize the new instance.</param>
1123     </member>
1124     <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.Date">
1125       <summary>Gets the date from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</summary>
1126       <returns>The date from the <see cref="System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</returns>
1127     </member>
1128     <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.EntityTag">
1129       <summary>Gets the entity tag from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</summary>
1130       <returns>The entity tag from the <see cref="System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</returns>
1131     </member>
1132     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Equals(System.Object)">
1133       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</summary>
1134       <param name="obj">The object to compare with the current object.</param>
1135       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1136     </member>
1137     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.GetHashCode">
1138       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</summary>
1139       <returns>A hash code for the current object.</returns>
1140     </member>
1141     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Parse(System.String)">
1142       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> instance.</summary>
1143       <param name="input">A string that represents range condition header value information.</param>
1144       <returns>A <see cref="System.Net.Http.Headers.RangeConditionHeaderValue"></see> instance.</returns>
1145       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1146       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid range Condition header value information.</exception>
1147     </member>
1148     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.ToString">
1149       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> object.</summary>
1150       <returns>A string that represents the current object.</returns>
1151     </member>
1152     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeConditionHeaderValue@)">
1153       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> information.</summary>
1154       <param name="input">The string to validate.</param>
1155       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> version of the string.</param>
1156       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.RangeConditionHeaderValue"></see> information; otherwise, false.</returns>
1157     </member>
1158     <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.System#ICloneable#Clone">
1159       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue"></see> instance.</summary>
1160       <returns>A copy of the current instance.</returns>
1161     </member>
1162     <member name="T:System.Net.Http.Headers.RangeHeaderValue">
1163       <summary>Represents a Range header value.</summary>
1164     </member>
1165     <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor">
1166       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> class.</summary>
1167     </member>
1168     <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
1169       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> class with a byte range.</summary>
1170       <param name="from">The position at which to start sending data.</param>
1171       <param name="to">The position at which to stop sending data.</param>
1172       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="from">from</paramref> is greater than <paramref name="to">to</paramref>  
1173  -or-  
1174  <paramref name="from">from</paramref> or <paramref name="to">to</paramref> is less than 0.</exception>
1175     </member>
1176     <member name="M:System.Net.Http.Headers.RangeHeaderValue.Equals(System.Object)">
1177       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> object.</summary>
1178       <param name="obj">The object to compare with the current object.</param>
1179       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1180     </member>
1181     <member name="M:System.Net.Http.Headers.RangeHeaderValue.GetHashCode">
1182       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> object.</summary>
1183       <returns>A hash code for the current object.</returns>
1184     </member>
1185     <member name="M:System.Net.Http.Headers.RangeHeaderValue.Parse(System.String)">
1186       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> instance.</summary>
1187       <param name="input">A string that represents range header value information.</param>
1188       <returns>A <see cref="System.Net.Http.Headers.RangeHeaderValue"></see> instance.</returns>
1189       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1190       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid range header value information.</exception>
1191     </member>
1192     <member name="P:System.Net.Http.Headers.RangeHeaderValue.Ranges">
1193       <summary>Gets the ranges specified from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> object.</summary>
1194       <returns>The ranges from the <see cref="System.Net.Http.Headers.RangeHeaderValue"></see> object.</returns>
1195     </member>
1196     <member name="M:System.Net.Http.Headers.RangeHeaderValue.ToString">
1197       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> object.</summary>
1198       <returns>A string that represents the current object.</returns>
1199     </member>
1200     <member name="M:System.Net.Http.Headers.RangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeHeaderValue@)">
1201       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> information.</summary>
1202       <param name="input">he string to validate.</param>
1203       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> version of the string.</param>
1204       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.AuthenticationHeaderValue"></see> information; otherwise, false.</returns>
1205     </member>
1206     <member name="P:System.Net.Http.Headers.RangeHeaderValue.Unit">
1207       <summary>Gets the unit from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> object.</summary>
1208       <returns>The unit from the <see cref="System.Net.Http.Headers.RangeHeaderValue"></see> object.</returns>
1209     </member>
1210     <member name="M:System.Net.Http.Headers.RangeHeaderValue.System#ICloneable#Clone">
1211       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue"></see> instance.</summary>
1212       <returns>A copy of the current instance.</returns>
1213     </member>
1214     <member name="T:System.Net.Http.Headers.RangeItemHeaderValue">
1215       <summary>Represents a byte range in a Range header value.</summary>
1216     </member>
1217     <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
1218       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue"></see> class.</summary>
1219       <param name="from">The position at which to start sending data.</param>
1220       <param name="to">The position at which to stop sending data.</param>
1221       <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="from">from</paramref> is greater than <paramref name="to">to</paramref>  
1222  -or-  
1223  <paramref name="from">from</paramref> or <paramref name="to">to</paramref> is less than 0.</exception>
1224     </member>
1225     <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.Equals(System.Object)">
1226       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue"></see> object.</summary>
1227       <param name="obj">The object to compare with the current object.</param>
1228       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1229     </member>
1230     <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.From">
1231       <summary>Gets the position at which to start sending data.</summary>
1232       <returns>The position at which to start sending data.</returns>
1233     </member>
1234     <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.GetHashCode">
1235       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue"></see> object.</summary>
1236       <returns>A hash code for the current object.</returns>
1237     </member>
1238     <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.To">
1239       <summary>Gets the position at which to stop sending data.</summary>
1240       <returns>The position at which to stop sending data.</returns>
1241     </member>
1242     <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.ToString">
1243       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue"></see> object.</summary>
1244       <returns>A string that represents the current object.</returns>
1245     </member>
1246     <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.System#ICloneable#Clone">
1247       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue"></see> instance.</summary>
1248       <returns>A copy of the current instance.</returns>
1249     </member>
1250     <member name="T:System.Net.Http.Headers.RetryConditionHeaderValue">
1251       <summary>Represents a Retry-After header value which can either be a date/time or a timespan value.</summary>
1252     </member>
1253     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.DateTimeOffset)">
1254       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> class.</summary>
1255       <param name="date">The date and time offset used to initialize the new instance.</param>
1256     </member>
1257     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.TimeSpan)">
1258       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> class.</summary>
1259       <param name="delta">The delta, in seconds, used to initialize the new instance.</param>
1260     </member>
1261     <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Date">
1262       <summary>Gets the date and time offset from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</summary>
1263       <returns>The date and time offset from the <see cref="System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</returns>
1264     </member>
1265     <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Delta">
1266       <summary>Gets the delta in seconds from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</summary>
1267       <returns>The delta in seconds from the <see cref="System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</returns>
1268     </member>
1269     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Equals(System.Object)">
1270       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</summary>
1271       <param name="obj">The object to compare with the current object.</param>
1272       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1273     </member>
1274     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.GetHashCode">
1275       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</summary>
1276       <returns>A hash code for the current object.</returns>
1277     </member>
1278     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Parse(System.String)">
1279       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> instance.</summary>
1280       <param name="input">A string that represents retry condition header value information.</param>
1281       <returns>A <see cref="System.Net.Http.Headers.RetryConditionHeaderValue"></see> instance.</returns>
1282       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1283       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid retry condition header value information.</exception>
1284     </member>
1285     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.ToString">
1286       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> object.</summary>
1287       <returns>A string that represents the current object.</returns>
1288     </member>
1289     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RetryConditionHeaderValue@)">
1290       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> information.</summary>
1291       <param name="input">The string to validate.</param>
1292       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> version of the string.</param>
1293       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.RetryConditionHeaderValue"></see> information; otherwise, false.</returns>
1294     </member>
1295     <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.System#ICloneable#Clone">
1296       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue"></see> instance.</summary>
1297       <returns>A copy of the current instance.</returns>
1298     </member>
1299     <member name="T:System.Net.Http.Headers.StringWithQualityHeaderValue">
1300       <summary>Represents a string header value with an optional quality.</summary>
1301     </member>
1302     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String)">
1303       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> class.</summary>
1304       <param name="value">The string used to initialize the new instance.</param>
1305     </member>
1306     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String,System.Double)">
1307       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> class.</summary>
1308       <param name="value">A string used to initialize the new instance.</param>
1309       <param name="quality">A quality factor used to initialize the new instance.</param>
1310     </member>
1311     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Equals(System.Object)">
1312       <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</summary>
1313       <param name="obj">The object to compare with the current object.</param>
1314       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1315     </member>
1316     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.GetHashCode">
1317       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</summary>
1318       <returns>A hash code for the current object.</returns>
1319     </member>
1320     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Parse(System.String)">
1321       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> instance.</summary>
1322       <param name="input">A string that represents quality header value information.</param>
1323       <returns>A <see cref="System.Net.Http.Headers.StringWithQualityHeaderValue"></see> instance.</returns>
1324       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1325       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid string with quality header value information.</exception>
1326     </member>
1327     <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Quality">
1328       <summary>Gets the quality factor from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</summary>
1329       <returns>The quality factor from the <see cref="System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</returns>
1330     </member>
1331     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.ToString">
1332       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</summary>
1333       <returns>A string that represents the current object.</returns>
1334     </member>
1335     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.StringWithQualityHeaderValue@)">
1336       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> information.</summary>
1337       <param name="input">The string to validate.</param>
1338       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> version of the string.</param>
1339       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.StringWithQualityHeaderValue"></see> information; otherwise, false.</returns>
1340     </member>
1341     <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Value">
1342       <summary>Gets the string value from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</summary>
1343       <returns>The string value from the <see cref="System.Net.Http.Headers.StringWithQualityHeaderValue"></see> object.</returns>
1344     </member>
1345     <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.System#ICloneable#Clone">
1346       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue"></see> instance.</summary>
1347       <returns>A copy of the current instance.</returns>
1348     </member>
1349     <member name="T:System.Net.Http.Headers.TransferCodingHeaderValue">
1350       <summary>Represents an accept-encoding header value.</summary>
1351     </member>
1352     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.Net.Http.Headers.TransferCodingHeaderValue)">
1353       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> class.</summary>
1354       <param name="source">A <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> object used to initialize the new instance.</param>
1355     </member>
1356     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.String)">
1357       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> class.</summary>
1358       <param name="value">A string used to initialize the new instance.</param>
1359     </member>
1360     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Equals(System.Object)">
1361       <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> object.</summary>
1362       <param name="obj">The object to compare with the current object.</param>
1363       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1364     </member>
1365     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.GetHashCode">
1366       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> object.</summary>
1367       <returns>A hash code for the current object.</returns>
1368     </member>
1369     <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Parameters">
1370       <summary>Gets the transfer-coding parameters.</summary>
1371       <returns>The transfer-coding parameters.</returns>
1372     </member>
1373     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Parse(System.String)">
1374       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> instance.</summary>
1375       <param name="input">A string that represents transfer-coding header value information.</param>
1376       <returns>A <see cref="System.Net.Http.Headers.TransferCodingHeaderValue"></see> instance.</returns>
1377       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1378       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid transfer-coding header value information.</exception>
1379     </member>
1380     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.ToString">
1381       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> object.</summary>
1382       <returns>A string that represents the current object.</returns>
1383     </member>
1384     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingHeaderValue@)">
1385       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> information.</summary>
1386       <param name="input">The string to validate.</param>
1387       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> version of the string.</param>
1388       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.TransferCodingHeaderValue"></see> information; otherwise, false.</returns>
1389     </member>
1390     <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Value">
1391       <summary>Gets the transfer-coding value.</summary>
1392       <returns>The transfer-coding value.</returns>
1393     </member>
1394     <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.System#ICloneable#Clone">
1395       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue"></see> instance.</summary>
1396       <returns>A copy of the current instance.</returns>
1397     </member>
1398     <member name="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue">
1399       <summary>Represents an Accept-Encoding header value.with optional quality factor.</summary>
1400     </member>
1401     <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String)">
1402       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> class.</summary>
1403       <param name="value">A string used to initialize the new instance.</param>
1404     </member>
1405     <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String,System.Double)">
1406       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> class.</summary>
1407       <param name="value">A string used to initialize the new instance.</param>
1408       <param name="quality">A value for the quality factor.</param>
1409     </member>
1410     <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Parse(System.String)">
1411       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> instance.</summary>
1412       <param name="input">A string that represents transfer-coding value information.</param>
1413       <returns>A <see cref="System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> instance.</returns>
1414       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1415       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid transfer-coding with quality header value information.</exception>
1416     </member>
1417     <member name="P:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Quality">
1418       <summary>Gets the quality factor from the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see>.</summary>
1419       <returns>The quality factor from the <see cref="System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see>.</returns>
1420     </member>
1421     <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingWithQualityHeaderValue@)">
1422       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> information.</summary>
1423       <param name="input">The string to validate.</param>
1424       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> version of the string.</param>
1425       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> information; otherwise, false.</returns>
1426     </member>
1427     <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.System#ICloneable#Clone">
1428       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue"></see> instance.</summary>
1429       <returns>A copy of the current instance.</returns>
1430     </member>
1431     <member name="T:System.Net.Http.Headers.ViaHeaderValue">
1432       <summary>Represents the value of a Via header.</summary>
1433     </member>
1434     <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String)">
1435       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> class.</summary>
1436       <param name="protocolVersion">The protocol version of the received protocol.</param>
1437       <param name="receivedBy">The host and port that the request or response was received by.</param>
1438     </member>
1439     <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String)">
1440       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> class.</summary>
1441       <param name="protocolVersion">The protocol version of the received protocol.</param>
1442       <param name="receivedBy">The host and port that the request or response was received by.</param>
1443       <param name="protocolName">The protocol name of the received protocol.</param>
1444     </member>
1445     <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String,System.String)">
1446       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> class.</summary>
1447       <param name="protocolVersion">The protocol version of the received protocol.</param>
1448       <param name="receivedBy">The host and port that the request or response was received by.</param>
1449       <param name="protocolName">The protocol name of the received protocol.</param>
1450       <param name="comment">The comment field used to identify the software of the recipient proxy or gateway.</param>
1451     </member>
1452     <member name="P:System.Net.Http.Headers.ViaHeaderValue.Comment">
1453       <summary>Gets the comment field used to identify the software of the recipient proxy or gateway.</summary>
1454       <returns>The comment field used to identify the software of the recipient proxy or gateway.</returns>
1455     </member>
1456     <member name="M:System.Net.Http.Headers.ViaHeaderValue.Equals(System.Object)">
1457       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> object.</summary>
1458       <param name="obj">The object to compare with the current object.</param>
1459       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1460     </member>
1461     <member name="M:System.Net.Http.Headers.ViaHeaderValue.GetHashCode">
1462       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> object.</summary>
1463       <returns>Returns a hash code for the current object.</returns>
1464     </member>
1465     <member name="M:System.Net.Http.Headers.ViaHeaderValue.Parse(System.String)">
1466       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> instance.</summary>
1467       <param name="input">A string that represents via header value information.</param>
1468       <returns>A <see cref="System.Net.Http.Headers.ViaHeaderValue"></see> instance.</returns>
1469       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1470       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid via header value information.</exception>
1471     </member>
1472     <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolName">
1473       <summary>Gets the protocol name of the received protocol.</summary>
1474       <returns>The protocol name.</returns>
1475     </member>
1476     <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolVersion">
1477       <summary>Gets the protocol version of the received protocol.</summary>
1478       <returns>The protocol version.</returns>
1479     </member>
1480     <member name="P:System.Net.Http.Headers.ViaHeaderValue.ReceivedBy">
1481       <summary>Gets the host and port that the request or response was received by.</summary>
1482       <returns>The host and port that the request or response was received by.</returns>
1483     </member>
1484     <member name="M:System.Net.Http.Headers.ViaHeaderValue.ToString">
1485       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> object.</summary>
1486       <returns>A string that represents the current object.</returns>
1487     </member>
1488     <member name="M:System.Net.Http.Headers.ViaHeaderValue.TryParse(System.String,System.Net.Http.Headers.ViaHeaderValue@)">
1489       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> information.</summary>
1490       <param name="input">The string to validate.</param>
1491       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> version of the string.</param>
1492       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.ViaHeaderValue"></see> information; otherwise, false.</returns>
1493     </member>
1494     <member name="M:System.Net.Http.Headers.ViaHeaderValue.System#ICloneable#Clone">
1495       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue"></see> instance.</summary>
1496       <returns>A copy of the current instance.</returns>
1497     </member>
1498     <member name="T:System.Net.Http.Headers.WarningHeaderValue">
1499       <summary>Represents a warning value used by the Warning header.</summary>
1500     </member>
1501     <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String)">
1502       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> class.</summary>
1503       <param name="code">The specific warning code.</param>
1504       <param name="agent">The host that attached the warning.</param>
1505       <param name="text">A quoted-string containing the warning text.</param>
1506     </member>
1507     <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String,System.DateTimeOffset)">
1508       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> class.</summary>
1509       <param name="code">The specific warning code.</param>
1510       <param name="agent">The host that attached the warning.</param>
1511       <param name="text">A quoted-string containing the warning text.</param>
1512       <param name="date">The date/time stamp of the warning.</param>
1513     </member>
1514     <member name="P:System.Net.Http.Headers.WarningHeaderValue.Agent">
1515       <summary>Gets the host that attached the warning.</summary>
1516       <returns>The host that attached the warning.</returns>
1517     </member>
1518     <member name="P:System.Net.Http.Headers.WarningHeaderValue.Code">
1519       <summary>Gets the specific warning code.</summary>
1520       <returns>The specific warning code.</returns>
1521     </member>
1522     <member name="P:System.Net.Http.Headers.WarningHeaderValue.Date">
1523       <summary>Gets the date/time stamp of the warning.</summary>
1524       <returns>The date/time stamp of the warning.</returns>
1525     </member>
1526     <member name="M:System.Net.Http.Headers.WarningHeaderValue.Equals(System.Object)">
1527       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> object.</summary>
1528       <param name="obj">The object to compare with the current object.</param>
1529       <returns>true if the specified <see cref="System.Object"></see> is equal to the current object; otherwise, false.</returns>
1530     </member>
1531     <member name="M:System.Net.Http.Headers.WarningHeaderValue.GetHashCode">
1532       <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> object.</summary>
1533       <returns>A hash code for the current object.</returns>
1534     </member>
1535     <member name="M:System.Net.Http.Headers.WarningHeaderValue.Parse(System.String)">
1536       <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> instance.</summary>
1537       <param name="input">A string that represents authentication header value information.</param>
1538       <returns>Returns a <see cref="System.Net.Http.Headers.WarningHeaderValue"></see> instance.</returns>
1539       <exception cref="T:System.ArgumentNullException"><paramref name="input">input</paramref> is a null reference.</exception>
1540       <exception cref="T:System.FormatException"><paramref name="input">input</paramref> is not valid authentication header value information.</exception>
1541     </member>
1542     <member name="P:System.Net.Http.Headers.WarningHeaderValue.Text">
1543       <summary>Gets a quoted-string containing the warning text.</summary>
1544       <returns>A quoted-string containing the warning text.</returns>
1545     </member>
1546     <member name="M:System.Net.Http.Headers.WarningHeaderValue.ToString">
1547       <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> object.</summary>
1548       <returns>A string that represents the current object.</returns>
1549     </member>
1550     <member name="M:System.Net.Http.Headers.WarningHeaderValue.TryParse(System.String,System.Net.Http.Headers.WarningHeaderValue@)">
1551       <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> information.</summary>
1552       <param name="input">The string to validate.</param>
1553       <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> version of the string.</param>
1554       <returns>true if <paramref name="input">input</paramref> is valid <see cref="System.Net.Http.Headers.WarningHeaderValue"></see> information; otherwise, false.</returns>
1555     </member>
1556     <member name="M:System.Net.Http.Headers.WarningHeaderValue.System#ICloneable#Clone">
1557       <summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue"></see> instance.</summary>
1558       <returns>Returns a copy of the current instance.</returns>
1559     </member>
1560     <member name="T:System.Net.Http.HttpClient">
1561       <summary>Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI.</summary>
1562     </member>
1563     <member name="M:System.Net.Http.HttpClient.#ctor">
1564       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient"></see> class.</summary>
1565     </member>
1566     <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler)">
1567       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient"></see> class with a specific handler.</summary>
1568       <param name="handler">The HTTP handler stack to use for sending requests.</param>
1569       <exception cref="T:System.ArgumentNullException">The <paramref name="handler">handler</paramref> is null.</exception>
1570     </member>
1571     <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
1572       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient"></see> class with a specific handler.</summary>
1573       <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler"></see> responsible for processing the HTTP response messages.</param>
1574       <param name="disposeHandler">true if the inner handler should be disposed of by HttpClient.Dispose, false if you intend to reuse the inner handler.</param>
1575       <exception cref="T:System.ArgumentNullException">The <paramref name="handler">handler</paramref> is null.</exception>
1576     </member>
1577     <member name="P:System.Net.Http.HttpClient.BaseAddress">
1578       <summary>Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</summary>
1579       <returns>The base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</returns>
1580     </member>
1581     <member name="M:System.Net.Http.HttpClient.CancelPendingRequests">
1582       <summary>Cancel all pending requests on this instance.</summary>
1583     </member>
1584     <member name="P:System.Net.Http.HttpClient.DefaultRequestHeaders">
1585       <summary>Gets the headers which should be sent with each request.</summary>
1586       <returns>The headers which should be sent with each request.</returns>
1587     </member>
1588     <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String,System.Threading.CancellationToken)">
1589       <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
1590       <param name="requestUri">The Uri the request is sent to.</param>
1591       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1592       <returns>The task object representing the asynchronous operation.</returns>
1593       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1594       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1595       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1596     </member>
1597     <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri,System.Threading.CancellationToken)">
1598       <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
1599       <param name="requestUri">The Uri the request is sent to.</param>
1600       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1601       <returns>The task object representing the asynchronous operation.</returns>
1602       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1603       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1604       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1605     </member>
1606     <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String)">
1607       <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
1608       <param name="requestUri">The Uri the request is sent to.</param>
1609       <returns>The task object representing the asynchronous operation.</returns>
1610       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1611       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1612       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1613     </member>
1614     <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri)">
1615       <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
1616       <param name="requestUri">The Uri the request is sent to.</param>
1617       <returns>The task object representing the asynchronous operation.</returns>
1618       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1619       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1620       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1621     </member>
1622     <member name="M:System.Net.Http.HttpClient.Dispose(System.Boolean)">
1623       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClient"></see> and optionally disposes of the managed resources.</summary>
1624       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
1625     </member>
1626     <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
1627       <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
1628       <param name="requestUri">The Uri the request is sent to.</param>
1629       <param name="completionOption">An HTTP  completion option value that indicates when the operation should be considered completed.</param>
1630       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1631       <returns>The task object representing the asynchronous operation.</returns>
1632       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1633       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1634     </member>
1635     <member name="M:System.Net.Http.HttpClient.GetAsync(System.String)">
1636       <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
1637       <param name="requestUri">The Uri the request is sent to.</param>
1638       <returns>The task object representing the asynchronous operation.</returns>
1639       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1640       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1641     </member>
1642     <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri)">
1643       <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
1644       <param name="requestUri">The Uri the request is sent to.</param>
1645       <returns>The task object representing the asynchronous operation.</returns>
1646       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1647       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1648     </member>
1649     <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption)">
1650       <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
1651       <param name="requestUri">The Uri the request is sent to.</param>
1652       <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
1653       <returns>The task object representing the asynchronous operation.</returns>
1654       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1655       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1656     </member>
1657     <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Threading.CancellationToken)">
1658       <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
1659       <param name="requestUri">The Uri the request is sent to.</param>
1660       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1661       <returns>The task object representing the asynchronous operation.</returns>
1662       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1663       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1664     </member>
1665     <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption)">
1666       <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
1667       <param name="requestUri">The Uri the request is sent to.</param>
1668       <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
1669       <returns>The task object representing the asynchronous operation.</returns>
1670       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1671       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1672     </member>
1673     <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Threading.CancellationToken)">
1674       <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
1675       <param name="requestUri">The Uri the request is sent to.</param>
1676       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1677       <returns>The task object representing the asynchronous operation.</returns>
1678       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1679       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1680     </member>
1681     <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
1682       <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
1683       <param name="requestUri">The Uri the request is sent to.</param>
1684       <param name="completionOption">An HTTP  completion option value that indicates when the operation should be considered completed.</param>
1685       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1686       <returns>The task object representing the asynchronous operation.</returns>
1687       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1688       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1689     </member>
1690     <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.Uri)">
1691       <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
1692       <param name="requestUri">The Uri the request is sent to.</param>
1693       <returns>The task object representing the asynchronous operation.</returns>
1694       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1695       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1696     </member>
1697     <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.String)">
1698       <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
1699       <param name="requestUri">The Uri the request is sent to.</param>
1700       <returns>The task object representing the asynchronous operation.</returns>
1701       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1702       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1703     </member>
1704     <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.String)">
1705       <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
1706       <param name="requestUri">The Uri the request is sent to.</param>
1707       <returns>The task object representing the asynchronous operation.</returns>
1708       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1709       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1710     </member>
1711     <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.Uri)">
1712       <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
1713       <param name="requestUri">The Uri the request is sent to.</param>
1714       <returns>The task object representing the asynchronous operation.</returns>
1715       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1716       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1717     </member>
1718     <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.String)">
1719       <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
1720       <param name="requestUri">The Uri the request is sent to.</param>
1721       <returns>The task object representing the asynchronous operation.</returns>
1722       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1723       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1724     </member>
1725     <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.Uri)">
1726       <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
1727       <param name="requestUri">The Uri the request is sent to.</param>
1728       <returns>The task object representing the asynchronous operation.</returns>
1729       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1730       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1731     </member>
1732     <member name="P:System.Net.Http.HttpClient.MaxResponseContentBufferSize">
1733       <summary>Gets or sets the maximum number of bytes to buffer when reading the response content.</summary>
1734       <returns>The maximum number of bytes to buffer when reading the response content. The default value for this property is 2 gigabytes.</returns>
1735       <exception cref="T:System.ArgumentOutOfRangeException">The size specified is less than or equal to zero.</exception>
1736       <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance.</exception>
1737       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1738     </member>
1739     <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
1740       <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
1741       <param name="requestUri">The Uri the request is sent to.</param>
1742       <param name="content">The HTTP request content sent to the server.</param>
1743       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1744       <returns>The task object representing the asynchronous operation.</returns>
1745       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1746       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1747     </member>
1748     <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
1749       <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
1750       <param name="requestUri">The Uri the request is sent to.</param>
1751       <param name="content">The HTTP request content sent to the server.</param>
1752       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1753       <returns>The task object representing the asynchronous operation.</returns>
1754       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1755       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1756     </member>
1757     <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent)">
1758       <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
1759       <param name="requestUri">The Uri the request is sent to.</param>
1760       <param name="content">The HTTP request content sent to the server.</param>
1761       <returns>The task object representing the asynchronous operation.</returns>
1762       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1763       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1764     </member>
1765     <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent)">
1766       <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
1767       <param name="requestUri">The Uri the request is sent to.</param>
1768       <param name="content">The HTTP request content sent to the server.</param>
1769       <returns>The task object representing the asynchronous operation.</returns>
1770       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1771       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1772     </member>
1773     <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent)">
1774       <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
1775       <param name="requestUri">The Uri the request is sent to.</param>
1776       <param name="content">The HTTP request content sent to the server.</param>
1777       <returns>The task object representing the asynchronous operation.</returns>
1778       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1779       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1780     </member>
1781     <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent)">
1782       <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
1783       <param name="requestUri">The Uri the request is sent to.</param>
1784       <param name="content">The HTTP request content sent to the server.</param>
1785       <returns>The task object representing the asynchronous operation.</returns>
1786       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1787       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1788     </member>
1789     <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
1790       <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
1791       <param name="requestUri">The Uri the request is sent to.</param>
1792       <param name="content">The HTTP request content sent to the server.</param>
1793       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1794       <returns>The task object representing the asynchronous operation.</returns>
1795       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1796       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1797     </member>
1798     <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
1799       <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
1800       <param name="requestUri">The Uri the request is sent to.</param>
1801       <param name="content">The HTTP request content sent to the server.</param>
1802       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
1803       <returns>The task object representing the asynchronous operation.</returns>
1804       <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri">requestUri</paramref> is null.</exception>
1805       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1806     </member>
1807     <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
1808       <summary>Send an HTTP request as an asynchronous operation.</summary>
1809       <param name="request">The HTTP request message to send.</param>
1810       <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
1811       <param name="cancellationToken">The cancellation token to cancel operation.</param>
1812       <returns>The task object representing the asynchronous operation.</returns>
1813       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> is null.</exception>
1814       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1815       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1816     </member>
1817     <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage)">
1818       <summary>Send an HTTP request as an asynchronous operation.</summary>
1819       <param name="request">The HTTP request message to send.</param>
1820       <returns>The task object representing the asynchronous operation.</returns>
1821       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> is null.</exception>
1822       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1823       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1824     </member>
1825     <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption)">
1826       <summary>Send an HTTP request as an asynchronous operation.</summary>
1827       <param name="request">The HTTP request message to send.</param>
1828       <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
1829       <returns>The task object representing the asynchronous operation.</returns>
1830       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> is null.</exception>
1831       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1832       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1833     </member>
1834     <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
1835       <summary>Send an HTTP request as an asynchronous operation.</summary>
1836       <param name="request">The HTTP request message to send.</param>
1837       <param name="cancellationToken">The cancellation token to cancel operation.</param>
1838       <returns>The task object representing the asynchronous operation.</returns>
1839       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> is null.</exception>
1840       <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="System.Net.Http.HttpClient"></see> instance.</exception>
1841       <exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation or timeout.</exception>
1842     </member>
1843     <member name="P:System.Net.Http.HttpClient.Timeout">
1844       <summary>Gets or sets the timespan to wait before the request times out.</summary>
1845       <returns>The timespan to wait before the request times out.</returns>
1846       <exception cref="T:System.ArgumentOutOfRangeException">The timeout specified is less than or equal to zero and is not <see cref="System.Threading.Timeout.InfiniteTimeSpan"></see>.</exception>
1847       <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance.</exception>
1848       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1849     </member>
1850     <member name="T:System.Net.Http.HttpClientHandler">
1851       <summary>The default message handler used by <see cref="T:System.Net.Http.HttpClient"></see>.</summary>
1852     </member>
1853     <member name="M:System.Net.Http.HttpClientHandler.#ctor">
1854       <summary>Creates an instance of a <see cref="T:System.Net.Http.HttpClientHandler"></see> class.</summary>
1855     </member>
1856     <member name="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect">
1857       <summary>Gets or sets a value that indicates whether the handler should follow redirection responses.</summary>
1858       <returns>true if the if the handler should follow redirection responses; otherwise false. The default value is true.</returns>
1859     </member>
1860     <member name="P:System.Net.Http.HttpClientHandler.AutomaticDecompression">
1861       <summary>Gets or sets the type of decompression method used by the handler for automatic decompression of the HTTP content response.</summary>
1862       <returns>The automatic decompression method used by the handler.</returns>
1863     </member>
1864     <member name="P:System.Net.Http.HttpClientHandler.CheckCertificateRevocationList">
1865       <summary>Gets or sets a value that indicates whether the certificate is checked against the certificate authority revocation list.</summary>
1866       <returns>true if the certificate revocation list is checked; otherwise, false.</returns>
1867     </member>
1868     <member name="P:System.Net.Http.HttpClientHandler.ClientCertificateOptions">
1869       <summary>Gets or sets a value that indicates if the certificate is automatically picked from the certificate store or if the caller is allowed to pass in a specific client certificate.</summary>
1870       <returns>The collection of security certificates associated with this handler.</returns>
1871     </member>
1872     <member name="P:System.Net.Http.HttpClientHandler.ClientCertificates">
1873       <summary>Gets the maximum allowed length of the response headers.</summary>
1874       <returns>The length, in kilobytes (1024 bytes), of the response headers.</returns>
1875     </member>
1876     <member name="P:System.Net.Http.HttpClientHandler.CookieContainer">
1877       <summary>Gets or sets the cookie container used to store server cookies by the handler.</summary>
1878       <returns>The cookie container used to store server cookies by the handler.</returns>
1879     </member>
1880     <member name="P:System.Net.Http.HttpClientHandler.Credentials">
1881       <summary>Gets or sets authentication information used by this handler.</summary>
1882       <returns>The authentication credentials associated with the handler. The default is null.</returns>
1883     </member>
1884     <member name="P:System.Net.Http.HttpClientHandler.DangerousAcceptAnyServerCertificateValidator">
1885       <returns></returns>
1886     </member>
1887     <member name="P:System.Net.Http.HttpClientHandler.DefaultProxyCredentials">
1888       <summary>When the default (system) proxy is being used, gets or sets the credentials to submit to the default proxy server for authentication. The default proxy is used only when <see cref="System.Net.Http.HttpClientHandler.UseProxy%2A"></see> is set to true and <see cref="System.Net.Http.HttpClientHandler.Proxy%2A"></see> is set to null.</summary>
1889       <returns>The credentials needed to authenticate a request to the default proxy server.</returns>
1890     </member>
1891     <member name="M:System.Net.Http.HttpClientHandler.Dispose(System.Boolean)">
1892       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClientHandler"></see> and optionally disposes of the managed resources.</summary>
1893       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
1894     </member>
1895     <member name="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections">
1896       <summary>Gets or sets the maximum number of redirects that the handler follows.</summary>
1897       <returns>The maximum number of redirection responses that the handler follows. The default value is 50.</returns>
1898     </member>
1899     <member name="P:System.Net.Http.HttpClientHandler.MaxConnectionsPerServer">
1900       <summary>Gets or sets the maximum number of concurrent connections (per server endpoint) allowed when making requests using an <see cref="T:System.Net.Http.HttpClient"></see> object. Note that the limit is per server endpoint, so for example a value of 256 would permit 256 concurrent connections to http://www.adatum.com/ and another 256 to http://www.adventure-works.com/.</summary>
1901       <returns>The maximum number of concurrent connections (per server endpoint) allowed by an <see cref="System.Net.Http.HttpClient"></see> object.</returns>
1902     </member>
1903     <member name="P:System.Net.Http.HttpClientHandler.MaxRequestContentBufferSize">
1904       <summary>Gets or sets the maximum request content buffer size used by the handler.</summary>
1905       <returns>The maximum request content buffer size in bytes. The default value is 2 gigabytes.</returns>
1906     </member>
1907     <member name="P:System.Net.Http.HttpClientHandler.MaxResponseHeadersLength">
1908       <summary>Gets or sets the maximum length, in kilobytes (1024 bytes), of the response headers. For example, if the value is 64, then 65536 bytes are allowed for the maximum response headers&amp;#39; length.</summary>
1909       <returns>The maximum length, in kilobytes (1024 bytes), of the response headers.</returns>
1910     </member>
1911     <member name="P:System.Net.Http.HttpClientHandler.PreAuthenticate">
1912       <summary>Gets or sets a value that indicates whether the handler sends an Authorization header with the request.</summary>
1913       <returns>true for the handler to send an HTTP Authorization header with requests after authentication has taken place; otherwise, false. The default is false.</returns>
1914     </member>
1915     <member name="P:System.Net.Http.HttpClientHandler.Properties">
1916       <summary>Gets a writable dictionary (that is, a map) of custom properties for the <see cref="T:System.Net.Http.HttpClient"></see> requests. The dictionary is initialized empty; you can insert and query key-value pairs for your custom handlers and special processing.</summary>
1917       <returns>a writable dictionary of custom properties.</returns>
1918     </member>
1919     <member name="P:System.Net.Http.HttpClientHandler.Proxy">
1920       <summary>Gets or sets proxy information used by the handler.</summary>
1921       <returns>The proxy information used by the handler. The default value is null.</returns>
1922     </member>
1923     <member name="M:System.Net.Http.HttpClientHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
1924       <summary>Creates an instance of  <see cref="T:System.Net.Http.HttpResponseMessage"></see> based on the information provided in the <see cref="T:System.Net.Http.HttpRequestMessage"></see> as an operation that will not block.</summary>
1925       <param name="request">The HTTP request message.</param>
1926       <param name="cancellationToken">A cancellation token to cancel the operation.</param>
1927       <returns>The task object representing the asynchronous operation.</returns>
1928       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> was null.</exception>
1929     </member>
1930     <member name="P:System.Net.Http.HttpClientHandler.ServerCertificateCustomValidationCallback">
1931       <summary>Gets or sets a callback method to validate the server certificate.</summary>
1932       <returns>A callback method to validate the server certificate.</returns>
1933     </member>
1934     <member name="P:System.Net.Http.HttpClientHandler.SslProtocols">
1935       <summary>Gets or sets the TLS/SSL protocol used by the <see cref="T:System.Net.Http.HttpClient"></see> objects managed by the HttpClientHandler object.</summary>
1936       <returns>One of the values defined in the <see cref="System.Security.Authentication.SslProtocols"></see> enumeration.</returns>
1937     </member>
1938     <member name="P:System.Net.Http.HttpClientHandler.SupportsAutomaticDecompression">
1939       <summary>Gets a value that indicates whether the handler supports automatic response content decompression.</summary>
1940       <returns>true if the if the handler supports automatic response content decompression; otherwise false. The default value is true.</returns>
1941     </member>
1942     <member name="P:System.Net.Http.HttpClientHandler.SupportsProxy">
1943       <summary>Gets a value that indicates whether the handler supports proxy settings.</summary>
1944       <returns>true if the if the handler supports proxy settings; otherwise false. The default value is true.</returns>
1945     </member>
1946     <member name="P:System.Net.Http.HttpClientHandler.SupportsRedirectConfiguration">
1947       <summary>Gets a value that indicates whether the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect"></see> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections"></see> properties.</summary>
1948       <returns>true if the if the handler supports configuration settings for the <see cref="System.Net.Http.HttpClientHandler.AllowAutoRedirect"></see> and <see cref="System.Net.Http.HttpClientHandler.MaxAutomaticRedirections"></see> properties; otherwise false. The default value is true.</returns>
1949     </member>
1950     <member name="P:System.Net.Http.HttpClientHandler.UseCookies">
1951       <summary>Gets or sets a value that indicates whether the handler uses the  <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer"></see> property  to store server cookies and uses these cookies when sending requests.</summary>
1952       <returns>true if the if the handler supports uses the  <see cref="System.Net.Http.HttpClientHandler.CookieContainer"></see> property  to store server cookies and uses these cookies when sending requests; otherwise false. The default value is true.</returns>
1953     </member>
1954     <member name="P:System.Net.Http.HttpClientHandler.UseDefaultCredentials">
1955       <summary>Gets or sets a value that controls whether default credentials are sent with requests by the handler.</summary>
1956       <returns>true if the default credentials are used; otherwise false. The default value is false.</returns>
1957     </member>
1958     <member name="P:System.Net.Http.HttpClientHandler.UseProxy">
1959       <summary>Gets or sets a value that indicates whether the handler uses a proxy for requests.</summary>
1960       <returns>true if the handler should use a proxy for requests; otherwise false. The default value is true.</returns>
1961     </member>
1962     <member name="T:System.Net.Http.HttpCompletionOption">
1963       <summary>Indicates if <see cref="T:System.Net.Http.HttpClient"></see> operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content.</summary>
1964     </member>
1965     <member name="F:System.Net.Http.HttpCompletionOption.ResponseContentRead">
1966       <summary>The operation should complete after reading the entire response including the content.</summary>
1967       <returns></returns>
1968     </member>
1969     <member name="F:System.Net.Http.HttpCompletionOption.ResponseHeadersRead">
1970       <summary>The operation should complete as soon as a response is available and headers are read. The content is not read yet.</summary>
1971       <returns></returns>
1972     </member>
1973     <member name="T:System.Net.Http.HttpContent">
1974       <summary>A base class representing an HTTP entity body and content headers.</summary>
1975     </member>
1976     <member name="M:System.Net.Http.HttpContent.#ctor">
1977       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpContent"></see> class.</summary>
1978     </member>
1979     <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream)">
1980       <summary>Serialize the HTTP content into a stream of bytes and copies it to the stream object provided as the <paramref name="stream">stream</paramref> parameter.</summary>
1981       <param name="stream">The target stream.</param>
1982       <returns>The task object representing the asynchronous operation.</returns>
1983     </member>
1984     <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream,System.Net.TransportContext)">
1985       <summary>Serialize the HTTP content into a stream of bytes and copies it to the stream object provided as the <paramref name="stream">stream</paramref> parameter.</summary>
1986       <param name="stream">The target stream.</param>
1987       <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
1988       <returns>The task object representing the asynchronous operation.</returns>
1989     </member>
1990     <member name="M:System.Net.Http.HttpContent.CreateContentReadStreamAsync">
1991       <summary>Serialize the HTTP content to a memory stream as an asynchronous operation.</summary>
1992       <returns>The task object representing the asynchronous operation.</returns>
1993     </member>
1994     <member name="M:System.Net.Http.HttpContent.Dispose">
1995       <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpContent"></see>.</summary>
1996     </member>
1997     <member name="M:System.Net.Http.HttpContent.Dispose(System.Boolean)">
1998       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpContent"></see> and optionally disposes of the managed resources.</summary>
1999       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2000     </member>
2001     <member name="P:System.Net.Http.HttpContent.Headers">
2002       <summary>Gets the HTTP content headers as defined in RFC 2616.</summary>
2003       <returns>The content headers as defined in RFC 2616.</returns>
2004     </member>
2005     <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync">
2006       <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
2007       <returns>The task object representing the asynchronous operation.</returns>
2008     </member>
2009     <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Int64)">
2010       <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
2011       <param name="maxBufferSize">The maximum size, in bytes, of the buffer to use.</param>
2012       <returns>The task object representing the asynchronous operation.</returns>
2013     </member>
2014     <member name="M:System.Net.Http.HttpContent.ReadAsByteArrayAsync">
2015       <summary>Serialize the HTTP content to a byte array as an asynchronous operation.</summary>
2016       <returns>The task object representing the asynchronous operation.</returns>
2017     </member>
2018     <member name="M:System.Net.Http.HttpContent.ReadAsStreamAsync">
2019       <summary>Serialize the HTTP content and return a stream that represents the content as an asynchronous operation.</summary>
2020       <returns>The task object representing the asynchronous operation.</returns>
2021     </member>
2022     <member name="M:System.Net.Http.HttpContent.ReadAsStringAsync">
2023       <summary>Serialize the HTTP content to a string as an asynchronous operation.</summary>
2024       <returns>The task object representing the asynchronous operation.</returns>
2025     </member>
2026     <member name="M:System.Net.Http.HttpContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
2027       <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
2028       <param name="stream">The target stream.</param>
2029       <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
2030       <returns>The task object representing the asynchronous operation.</returns>
2031     </member>
2032     <member name="M:System.Net.Http.HttpContent.TryComputeLength(System.Int64@)">
2033       <summary>Determines whether the HTTP content has a valid length in bytes.</summary>
2034       <param name="length">The length in bytes of the HTTP content.</param>
2035       <returns>true if <paramref name="length">length</paramref> is a valid length; otherwise, false.</returns>
2036     </member>
2037     <member name="T:System.Net.Http.HttpMessageHandler">
2038       <summary>A base type for HTTP message handlers.</summary>
2039     </member>
2040     <member name="M:System.Net.Http.HttpMessageHandler.#ctor">
2041       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageHandler"></see> class.</summary>
2042     </member>
2043     <member name="M:System.Net.Http.HttpMessageHandler.Dispose">
2044       <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageHandler"></see>.</summary>
2045     </member>
2046     <member name="M:System.Net.Http.HttpMessageHandler.Dispose(System.Boolean)">
2047       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageHandler"></see> and optionally disposes of the managed resources.</summary>
2048       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2049     </member>
2050     <member name="M:System.Net.Http.HttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
2051       <summary>Send an HTTP request as an asynchronous operation.</summary>
2052       <param name="request">The HTTP request message to send.</param>
2053       <param name="cancellationToken">The cancellation token to cancel operation.</param>
2054       <returns>The task object representing the asynchronous operation.</returns>
2055       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> was null.</exception>
2056     </member>
2057     <member name="T:System.Net.Http.HttpMessageInvoker">
2058       <summary>A specialty class that allows applications to call the <see cref="M:System.Net.Http.HttpMessageInvoker.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"></see> method on an HTTP handler chain.</summary>
2059     </member>
2060     <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler)">
2061       <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker"></see> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler"></see>.</summary>
2062       <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler"></see> responsible for processing the HTTP response messages.</param>
2063     </member>
2064     <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
2065       <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker"></see> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler"></see>.</summary>
2066       <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler"></see> responsible for processing the HTTP response messages.</param>
2067       <param name="disposeHandler">true if the inner handler should be disposed of by Dispose(), false if you intend to reuse the inner handler.</param>
2068     </member>
2069     <member name="M:System.Net.Http.HttpMessageInvoker.Dispose">
2070       <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker"></see>.</summary>
2071     </member>
2072     <member name="M:System.Net.Http.HttpMessageInvoker.Dispose(System.Boolean)">
2073       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker"></see> and optionally disposes of the managed resources.</summary>
2074       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2075     </member>
2076     <member name="M:System.Net.Http.HttpMessageInvoker.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
2077       <summary>Send an HTTP request as an asynchronous operation.</summary>
2078       <param name="request">The HTTP request message to send.</param>
2079       <param name="cancellationToken">The cancellation token to cancel operation.</param>
2080       <returns>The task object representing the asynchronous operation.</returns>
2081       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> was null.</exception>
2082     </member>
2083     <member name="T:System.Net.Http.HttpMethod">
2084       <summary>A helper class for retrieving and comparing standard HTTP methods and for creating new HTTP methods.</summary>
2085     </member>
2086     <member name="M:System.Net.Http.HttpMethod.#ctor(System.String)">
2087       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMethod"></see> class with a specific HTTP method.</summary>
2088       <param name="method">The HTTP method.</param>
2089     </member>
2090     <member name="P:System.Net.Http.HttpMethod.Delete">
2091       <summary>Represents an HTTP DELETE protocol method.</summary>
2092       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2093     </member>
2094     <member name="M:System.Net.Http.HttpMethod.Equals(System.Net.Http.HttpMethod)">
2095       <summary>Determines whether the specified <see cref="T:System.Net.Http.HttpMethod"></see> is equal to the current <see cref="T:System.Object"></see>.</summary>
2096       <param name="other">The HTTP method to compare with the current object.</param>
2097       <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
2098     </member>
2099     <member name="M:System.Net.Http.HttpMethod.Equals(System.Object)">
2100       <summary>Determines whether the specified <see cref="T:System.Object"></see> is equal to the current <see cref="T:System.Object"></see>.</summary>
2101       <param name="obj">The object to compare with the current object.</param>
2102       <returns>true if the specified object is equal to the current object; otherwise, false.</returns>
2103     </member>
2104     <member name="P:System.Net.Http.HttpMethod.Get">
2105       <summary>Represents an HTTP GET protocol method.</summary>
2106       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2107     </member>
2108     <member name="M:System.Net.Http.HttpMethod.GetHashCode">
2109       <summary>Serves as a hash function for this type.</summary>
2110       <returns>A hash code for the current <see cref="System.Object"></see>.</returns>
2111     </member>
2112     <member name="P:System.Net.Http.HttpMethod.Head">
2113       <summary>Represents an HTTP HEAD protocol method. The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body.</summary>
2114       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2115     </member>
2116     <member name="P:System.Net.Http.HttpMethod.Method">
2117       <summary>An HTTP method.</summary>
2118       <returns>An HTTP method represented as a <see cref="System.String"></see>.</returns>
2119     </member>
2120     <member name="M:System.Net.Http.HttpMethod.op_Equality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
2121       <summary>The equality operator for comparing two <see cref="T:System.Net.Http.HttpMethod"></see> objects.</summary>
2122       <param name="left">The left <see cref="T:System.Net.Http.HttpMethod"></see> to an equality operator.</param>
2123       <param name="right">The right  <see cref="T:System.Net.Http.HttpMethod"></see> to an equality operator.</param>
2124       <returns>true if the specified <paramref name="left">left</paramref> and <paramref name="right">right</paramref> parameters are equal; otherwise, false.</returns>
2125     </member>
2126     <member name="M:System.Net.Http.HttpMethod.op_Inequality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
2127       <summary>The inequality operator for comparing two <see cref="T:System.Net.Http.HttpMethod"></see> objects.</summary>
2128       <param name="left">The left <see cref="T:System.Net.Http.HttpMethod"></see> to an inequality operator.</param>
2129       <param name="right">The right  <see cref="T:System.Net.Http.HttpMethod"></see> to an inequality operator.</param>
2130       <returns>true if the specified <paramref name="left">left</paramref> and <paramref name="right">right</paramref> parameters are inequal; otherwise, false.</returns>
2131     </member>
2132     <member name="P:System.Net.Http.HttpMethod.Options">
2133       <summary>Represents an HTTP OPTIONS protocol method.</summary>
2134       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2135     </member>
2136     <member name="P:System.Net.Http.HttpMethod.Post">
2137       <summary>Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.</summary>
2138       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2139     </member>
2140     <member name="P:System.Net.Http.HttpMethod.Put">
2141       <summary>Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.</summary>
2142       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2143     </member>
2144     <member name="M:System.Net.Http.HttpMethod.ToString">
2145       <summary>Returns a string that represents the current object.</summary>
2146       <returns>A string representing the current object.</returns>
2147     </member>
2148     <member name="P:System.Net.Http.HttpMethod.Trace">
2149       <summary>Represents an HTTP TRACE protocol method.</summary>
2150       <returns>Returns <see cref="System.Net.Http.HttpMethod"></see>.</returns>
2151     </member>
2152     <member name="T:System.Net.Http.HttpRequestException">
2153       <summary>A base class for exceptions thrown by the <see cref="T:System.Net.Http.HttpClient"></see> and <see cref="T:System.Net.Http.HttpMessageHandler"></see> classes.</summary>
2154     </member>
2155     <member name="M:System.Net.Http.HttpRequestException.#ctor">
2156       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException"></see> class.</summary>
2157     </member>
2158     <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String)">
2159       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException"></see> class with a specific message that describes the current exception.</summary>
2160       <param name="message">A message that describes the current exception.</param>
2161     </member>
2162     <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String,System.Exception)">
2163       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException"></see> class with a specific message that describes the current exception and an inner exception.</summary>
2164       <param name="message">A message that describes the current exception.</param>
2165       <param name="inner">The inner exception.</param>
2166     </member>
2167     <member name="T:System.Net.Http.HttpRequestMessage">
2168       <summary>Represents a HTTP request message.</summary>
2169     </member>
2170     <member name="M:System.Net.Http.HttpRequestMessage.#ctor">
2171       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage"></see> class.</summary>
2172     </member>
2173     <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.String)">
2174       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage"></see> class with an HTTP method and a request <see cref="T:System.Uri"></see>.</summary>
2175       <param name="method">The HTTP method.</param>
2176       <param name="requestUri">A string that represents the request  <see cref="T:System.Uri"></see>.</param>
2177     </member>
2178     <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.Uri)">
2179       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage"></see> class with an HTTP method and a request <see cref="T:System.Uri"></see>.</summary>
2180       <param name="method">The HTTP method.</param>
2181       <param name="requestUri">The <see cref="T:System.Uri"></see> to request.</param>
2182     </member>
2183     <member name="P:System.Net.Http.HttpRequestMessage.Content">
2184       <summary>Gets or sets the contents of the HTTP message.</summary>
2185       <returns>The content of a message</returns>
2186     </member>
2187     <member name="M:System.Net.Http.HttpRequestMessage.Dispose">
2188       <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpRequestMessage"></see>.</summary>
2189     </member>
2190     <member name="M:System.Net.Http.HttpRequestMessage.Dispose(System.Boolean)">
2191       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpRequestMessage"></see> and optionally disposes of the managed resources.</summary>
2192       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2193     </member>
2194     <member name="P:System.Net.Http.HttpRequestMessage.Headers">
2195       <summary>Gets the collection of HTTP request headers.</summary>
2196       <returns>The collection of HTTP request headers.</returns>
2197     </member>
2198     <member name="P:System.Net.Http.HttpRequestMessage.Method">
2199       <summary>Gets or sets the HTTP method used by the HTTP request message.</summary>
2200       <returns>The HTTP method used by the request message. The default is the GET method.</returns>
2201     </member>
2202     <member name="P:System.Net.Http.HttpRequestMessage.Properties">
2203       <summary>Gets a set of properties for the HTTP request.</summary>
2204       <returns>Returns <see cref="System.Collections.Generic.IDictionary`2"></see>.</returns>
2205     </member>
2206     <member name="P:System.Net.Http.HttpRequestMessage.RequestUri">
2207       <summary>Gets or sets the <see cref="T:System.Uri"></see> used for the HTTP request.</summary>
2208       <returns>The <see cref="System.Uri"></see> used for the HTTP request.</returns>
2209     </member>
2210     <member name="M:System.Net.Http.HttpRequestMessage.ToString">
2211       <summary>Returns a string that represents the current object.</summary>
2212       <returns>A string representation of the current object.</returns>
2213     </member>
2214     <member name="P:System.Net.Http.HttpRequestMessage.Version">
2215       <summary>Gets or sets the HTTP message version.</summary>
2216       <returns>The HTTP message version. The default is 1.1.</returns>
2217     </member>
2218     <member name="T:System.Net.Http.HttpResponseMessage">
2219       <summary>Represents a HTTP response message including the status code and data.</summary>
2220     </member>
2221     <member name="M:System.Net.Http.HttpResponseMessage.#ctor">
2222       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage"></see> class.</summary>
2223     </member>
2224     <member name="M:System.Net.Http.HttpResponseMessage.#ctor(System.Net.HttpStatusCode)">
2225       <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage"></see> class with a specific <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode"></see>.</summary>
2226       <param name="statusCode">The status code of the HTTP response.</param>
2227     </member>
2228     <member name="P:System.Net.Http.HttpResponseMessage.Content">
2229       <summary>Gets or sets the content of a HTTP response message.</summary>
2230       <returns>The content of the HTTP response message.</returns>
2231     </member>
2232     <member name="M:System.Net.Http.HttpResponseMessage.Dispose">
2233       <summary>Releases the unmanaged resources and disposes of unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage"></see>.</summary>
2234     </member>
2235     <member name="M:System.Net.Http.HttpResponseMessage.Dispose(System.Boolean)">
2236       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage"></see> and optionally disposes of the managed resources.</summary>
2237       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2238     </member>
2239     <member name="M:System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode">
2240       <summary>Throws an exception if the <see cref="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode"></see> property for the HTTP response is false.</summary>
2241       <returns>The HTTP response message if the call is successful.</returns>
2242       <exception cref="T:System.Net.Http.HttpRequestException">The HTTP response is unsuccessful.</exception>
2243     </member>
2244     <member name="P:System.Net.Http.HttpResponseMessage.Headers">
2245       <summary>Gets the collection of HTTP response headers.</summary>
2246       <returns>The collection of HTTP response headers.</returns>
2247     </member>
2248     <member name="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode">
2249       <summary>Gets a value that indicates if the HTTP response was successful.</summary>
2250       <returns>A value that indicates if the HTTP response was successful. true if <see cref="System.Net.Http.HttpResponseMessage.StatusCode"></see> was in the range 200-299; otherwise false.</returns>
2251     </member>
2252     <member name="P:System.Net.Http.HttpResponseMessage.ReasonPhrase">
2253       <summary>Gets or sets the reason phrase which typically is sent by servers together with the status code.</summary>
2254       <returns>The reason phrase sent by the server.</returns>
2255     </member>
2256     <member name="P:System.Net.Http.HttpResponseMessage.RequestMessage">
2257       <summary>Gets or sets the request message which led to this response message.</summary>
2258       <returns>The request message which led to this response message.</returns>
2259     </member>
2260     <member name="P:System.Net.Http.HttpResponseMessage.StatusCode">
2261       <summary>Gets or sets the status code of the HTTP response.</summary>
2262       <returns>The status code of the HTTP response.</returns>
2263     </member>
2264     <member name="M:System.Net.Http.HttpResponseMessage.ToString">
2265       <summary>Returns a string that represents the current object.</summary>
2266       <returns>A string representation of the current object.</returns>
2267     </member>
2268     <member name="P:System.Net.Http.HttpResponseMessage.Version">
2269       <summary>Gets or sets the HTTP message version.</summary>
2270       <returns>The HTTP message version. The default is 1.1.</returns>
2271     </member>
2272     <member name="T:System.Net.Http.MessageProcessingHandler">
2273       <summary>A base type for handlers which only do some small processing of request and/or response messages.</summary>
2274     </member>
2275     <member name="M:System.Net.Http.MessageProcessingHandler.#ctor">
2276       <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler"></see> class.</summary>
2277     </member>
2278     <member name="M:System.Net.Http.MessageProcessingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
2279       <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler"></see> class with a specific inner handler.</summary>
2280       <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
2281     </member>
2282     <member name="M:System.Net.Http.MessageProcessingHandler.ProcessRequest(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
2283       <summary>Performs processing on each request sent to the server.</summary>
2284       <param name="request">The HTTP request message to process.</param>
2285       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
2286       <returns>The HTTP request message that was processed.</returns>
2287     </member>
2288     <member name="M:System.Net.Http.MessageProcessingHandler.ProcessResponse(System.Net.Http.HttpResponseMessage,System.Threading.CancellationToken)">
2289       <summary>Perform processing on each response from the server.</summary>
2290       <param name="response">The HTTP response message to process.</param>
2291       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
2292       <returns>The HTTP response message that was processed.</returns>
2293     </member>
2294     <member name="M:System.Net.Http.MessageProcessingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
2295       <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
2296       <param name="request">The HTTP request message to send to the server.</param>
2297       <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
2298       <returns>The task object representing the asynchronous operation.</returns>
2299       <exception cref="T:System.ArgumentNullException">The <paramref name="request">request</paramref> was null.</exception>
2300     </member>
2301     <member name="T:System.Net.Http.MultipartContent">
2302       <summary>Provides a collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized using the multipart/* content type specification.</summary>
2303     </member>
2304     <member name="M:System.Net.Http.MultipartContent.#ctor">
2305       <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent"></see> class.</summary>
2306     </member>
2307     <member name="M:System.Net.Http.MultipartContent.#ctor(System.String)">
2308       <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent"></see> class.</summary>
2309       <param name="subtype">The subtype of the multipart content.</param>
2310       <exception cref="T:System.ArgumentException">The <paramref name="subtype">subtype</paramref> was null or contains only white space characters.</exception>
2311     </member>
2312     <member name="M:System.Net.Http.MultipartContent.#ctor(System.String,System.String)">
2313       <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent"></see> class.</summary>
2314       <param name="subtype">The subtype of the multipart content.</param>
2315       <param name="boundary">The boundary string for the multipart content.</param>
2316       <exception cref="T:System.ArgumentException">The <paramref name="subtype">subtype</paramref> was null or an empty string.  
2317  The <paramref name="boundary">boundary</paramref> was null or contains only white space characters.  
2318  -or-  
2319  The <paramref name="boundary">boundary</paramref> ends with a space character.</exception>
2320       <exception cref="T:System.ArgumentOutOfRangeException">The length of the <paramref name="boundary">boundary</paramref> was greater than 70.</exception>
2321     </member>
2322     <member name="M:System.Net.Http.MultipartContent.Add(System.Net.Http.HttpContent)">
2323       <summary>Add multipart HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized using the multipart/* content type specification.</summary>
2324       <param name="content">The HTTP content to add to the collection.</param>
2325       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> was null.</exception>
2326     </member>
2327     <member name="M:System.Net.Http.MultipartContent.Dispose(System.Boolean)">
2328       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.MultipartContent"></see> and optionally disposes of the managed resources.</summary>
2329       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2330     </member>
2331     <member name="M:System.Net.Http.MultipartContent.GetEnumerator">
2332       <summary>Returns an enumerator that iterates through the collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized using the multipart/* content type specification..</summary>
2333       <returns>An object that can be used to iterate through the collection.</returns>
2334     </member>
2335     <member name="M:System.Net.Http.MultipartContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
2336       <summary>Serialize the multipart HTTP content to a stream as an asynchronous operation.</summary>
2337       <param name="stream">The target stream.</param>
2338       <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
2339       <returns>The task object representing the asynchronous operation.</returns>
2340     </member>
2341     <member name="M:System.Net.Http.MultipartContent.TryComputeLength(System.Int64@)">
2342       <summary>Determines whether the HTTP multipart content has a valid length in bytes.</summary>
2343       <param name="length">The length in bytes of the HHTP content.</param>
2344       <returns>true if <paramref name="length">length</paramref> is a valid length; otherwise, false.</returns>
2345     </member>
2346     <member name="M:System.Net.Http.MultipartContent.System#Collections#IEnumerable#GetEnumerator">
2347       <summary>The explicit implementation of the <see cref="M:System.Net.Http.MultipartContent.GetEnumerator"></see> method.</summary>
2348       <returns>An object that can be used to iterate through the collection.</returns>
2349     </member>
2350     <member name="T:System.Net.Http.MultipartFormDataContent">
2351       <summary>Provides a container for content encoded using multipart/form-data MIME type.</summary>
2352     </member>
2353     <member name="M:System.Net.Http.MultipartFormDataContent.#ctor">
2354       <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent"></see> class.</summary>
2355     </member>
2356     <member name="M:System.Net.Http.MultipartFormDataContent.#ctor(System.String)">
2357       <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent"></see> class.</summary>
2358       <param name="boundary">The boundary string for the multipart form data content.</param>
2359       <exception cref="T:System.ArgumentException">The <paramref name="boundary">boundary</paramref> was null or contains only white space characters.  
2360  -or-  
2361  The <paramref name="boundary">boundary</paramref> ends with a space character.</exception>
2362       <exception cref="T:System.ArgumentOutOfRangeException">The length of the <paramref name="boundary">boundary</paramref> was greater than 70.</exception>
2363     </member>
2364     <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent)">
2365       <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized to multipart/form-data MIME type.</summary>
2366       <param name="content">The HTTP content to add to the collection.</param>
2367       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> was null.</exception>
2368     </member>
2369     <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String)">
2370       <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized to multipart/form-data MIME type.</summary>
2371       <param name="content">The HTTP content to add to the collection.</param>
2372       <param name="name">The name for the HTTP content to add.</param>
2373       <exception cref="T:System.ArgumentException">The <paramref name="name">name</paramref> was null or contains only white space characters.</exception>
2374       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> was null.</exception>
2375     </member>
2376     <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String,System.String)">
2377       <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent"></see> objects that get serialized to multipart/form-data MIME type.</summary>
2378       <param name="content">The HTTP content to add to the collection.</param>
2379       <param name="name">The name for the HTTP content to add.</param>
2380       <param name="fileName">The file name for the HTTP content to add to the collection.</param>
2381       <exception cref="T:System.ArgumentException">The <paramref name="name">name</paramref> was null or contains only white space characters.  
2382  -or-  
2383  The <paramref name="fileName">fileName</paramref> was null or contains only white space characters.</exception>
2384       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> was null.</exception>
2385     </member>
2386     <member name="T:System.Net.Http.StreamContent">
2387       <summary>Provides HTTP content based on a stream.</summary>
2388     </member>
2389     <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream)">
2390       <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent"></see> class.</summary>
2391       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent"></see>.</param>
2392     </member>
2393     <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream,System.Int32)">
2394       <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent"></see> class.</summary>
2395       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent"></see>.</param>
2396       <param name="bufferSize">The size, in bytes, of the buffer for the <see cref="T:System.Net.Http.StreamContent"></see>.</param>
2397       <exception cref="T:System.ArgumentNullException">The <paramref name="content">content</paramref> was null.</exception>
2398       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="bufferSize">bufferSize</paramref> was less than or equal to zero.</exception>
2399     </member>
2400     <member name="M:System.Net.Http.StreamContent.CreateContentReadStreamAsync">
2401       <summary>Write the HTTP stream content to a memory stream as an asynchronous operation.</summary>
2402       <returns>The task object representing the asynchronous operation.</returns>
2403     </member>
2404     <member name="M:System.Net.Http.StreamContent.Dispose(System.Boolean)">
2405       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.StreamContent"></see> and optionally disposes of the managed resources.</summary>
2406       <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
2407     </member>
2408     <member name="M:System.Net.Http.StreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
2409       <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
2410       <param name="stream">The target stream.</param>
2411       <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
2412       <returns>The task object representing the asynchronous operation.</returns>
2413     </member>
2414     <member name="M:System.Net.Http.StreamContent.TryComputeLength(System.Int64@)">
2415       <summary>Determines whether the stream content has a valid length in bytes.</summary>
2416       <param name="length">The length in bytes of the stream content.</param>
2417       <returns>true if <paramref name="length">length</paramref> is a valid length; otherwise, false.</returns>
2418     </member>
2419     <member name="T:System.Net.Http.StringContent">
2420       <summary>Provides HTTP content based on a string.</summary>
2421     </member>
2422     <member name="M:System.Net.Http.StringContent.#ctor(System.String)">
2423       <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent"></see> class.</summary>
2424       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent"></see>.</param>
2425     </member>
2426     <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding)">
2427       <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent"></see> class.</summary>
2428       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent"></see>.</param>
2429       <param name="encoding">The encoding to use for the content.</param>
2430     </member>
2431     <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding,System.String)">
2432       <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent"></see> class.</summary>
2433       <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent"></see>.</param>
2434       <param name="encoding">The encoding to use for the content.</param>
2435       <param name="mediaType">The media type to use for the content.</param>
2436     </member>
2437   </members>
2438 </doc>