1 <?xml version="1.0" encoding="utf-8"?>
\r
4 <name>System.Net.Http</name>
\r
7 <member name="T:System.Net.Http.ByteArrayContent">
\r
8 <summary>Provides HTTP content based on a byte array.</summary>
\r
10 <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[])">
\r
11 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
\r
12 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
\r
13 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
\r
15 <member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[],System.Int32,System.Int32)">
\r
16 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
\r
17 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
\r
18 <param name="offset">The offset, in bytes, in the <paramref name="content" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
\r
19 <param name="count">The number of bytes in the <paramref name="content" /> starting from the <paramref name="offset" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
\r
20 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
\r
21 <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> parameter is less than zero.-or-The <paramref name="offset" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter.-or-The <paramref name="count " /> parameter is less than zero.-or-The <paramref name="count" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter - minus the <paramref name="offset" /> parameter.</exception>
\r
23 <member name="M:System.Net.Http.ByteArrayContent.CreateContentReadStreamAsync">
\r
24 <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" />.</summary>
\r
25 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
27 <member name="M:System.Net.Http.ByteArrayContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
\r
28 <summary>Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.</summary>
\r
29 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />. The task object representing the asynchronous operation.</returns>
\r
30 <param name="stream">The target stream.</param>
\r
31 <param name="context">Information about the transport, like channel binding token. This parameter may be null.</param>
\r
33 <member name="M:System.Net.Http.ByteArrayContent.TryComputeLength(System.Int64@)">
\r
34 <summary>Determines whether a byte array has a valid length in bytes.</summary>
\r
35 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
\r
36 <param name="length">The length in bytes of the byte array.</param>
\r
38 <member name="T:System.Net.Http.ClientCertificateOption">
\r
39 <summary>Specifies how client certificates are provided.</summary>
\r
41 <member name="F:System.Net.Http.ClientCertificateOption.Automatic">
\r
42 <summary>The <see cref="T:System.Net.Http.HttpClientHandler" /> will attempt to provide all available client certificates automatically.</summary>
\r
44 <member name="F:System.Net.Http.ClientCertificateOption.Manual">
\r
45 <summary>The application manually provides the client certificates to the <see cref="T:System.Net.Http.WebRequestHandler" />. This value is the default. </summary>
\r
47 <member name="T:System.Net.Http.DelegatingHandler">
\r
48 <summary>A type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.</summary>
\r
50 <member name="M:System.Net.Http.DelegatingHandler.#ctor">
\r
51 <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class.</summary>
\r
53 <member name="M:System.Net.Http.DelegatingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
\r
54 <summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class with a specific inner handler.</summary>
\r
55 <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
\r
57 <member name="M:System.Net.Http.DelegatingHandler.Dispose(System.Boolean)">
\r
58 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.DelegatingHandler" />, and optionally disposes of the managed resources.</summary>
\r
59 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources. </param>
\r
61 <member name="P:System.Net.Http.DelegatingHandler.InnerHandler">
\r
62 <summary>Gets or sets the inner handler which processes the HTTP response messages.</summary>
\r
63 <returns>Returns <see cref="T:System.Net.Http.HttpMessageHandler" />.The inner handler for HTTP response messages.</returns>
\r
65 <member name="M:System.Net.Http.DelegatingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
66 <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
\r
67 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />. The task object representing the asynchronous operation.</returns>
\r
68 <param name="request">The HTTP request message to send to the server.</param>
\r
69 <param name="cancellationToken">A cancellation token to cancel operation.</param>
\r
70 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
72 <member name="T:System.Net.Http.FormUrlEncodedContent">
\r
73 <summary>A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.</summary>
\r
75 <member name="M:System.Net.Http.FormUrlEncodedContent.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
\r
76 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.FormUrlEncodedContent" /> class with a specific collection of name/value pairs.</summary>
\r
77 <param name="nameValueCollection">A collection of name/value pairs.</param>
\r
79 <member name="T:System.Net.Http.HttpClient">
\r
80 <summary>Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. </summary>
\r
82 <member name="M:System.Net.Http.HttpClient.#ctor">
\r
83 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class.</summary>
\r
85 <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler)">
\r
86 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary>
\r
87 <param name="handler">The HTTP handler stack to use for sending requests. </param>
\r
89 <member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
\r
90 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary>
\r
91 <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
\r
92 <param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param>
\r
94 <member name="P:System.Net.Http.HttpClient.BaseAddress">
\r
95 <summary>Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</summary>
\r
96 <returns>Returns <see cref="T:System.Uri" />.The base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</returns>
\r
98 <member name="M:System.Net.Http.HttpClient.CancelPendingRequests">
\r
99 <summary>Cancel all pending requests on this instance.</summary>
\r
101 <member name="P:System.Net.Http.HttpClient.DefaultRequestHeaders">
\r
102 <summary>Gets the headers which should be sent with each request.</summary>
\r
103 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The headers which should be sent with each request.</returns>
\r
105 <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String)">
\r
106 <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
\r
107 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
108 <param name="requestUri">The Uri the request is sent to.</param>
\r
109 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
110 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
112 <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String,System.Threading.CancellationToken)">
\r
113 <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
\r
114 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
115 <param name="requestUri">The Uri the request is sent to.</param>
\r
116 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
117 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
118 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
120 <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri)">
\r
121 <summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary>
\r
122 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
123 <param name="requestUri">The Uri the request is sent to.</param>
\r
124 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
125 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
127 <member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri,System.Threading.CancellationToken)">
\r
128 <summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
\r
129 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
130 <param name="requestUri">The Uri the request is sent to.</param>
\r
131 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
132 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
133 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
135 <member name="M:System.Net.Http.HttpClient.Dispose(System.Boolean)">
\r
136 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClient" /> and optionally disposes of the managed resources.</summary>
\r
137 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
139 <member name="M:System.Net.Http.HttpClient.GetAsync(System.String)">
\r
140 <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
\r
141 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
142 <param name="requestUri">The Uri the request is sent to.</param>
\r
143 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
145 <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption)">
\r
146 <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
\r
147 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
\r
148 <param name="requestUri">The Uri the request is sent to.</param>
\r
149 <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
\r
150 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
152 <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
\r
153 <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
\r
154 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
\r
155 <param name="requestUri">The Uri the request is sent to.</param>
\r
156 <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
\r
157 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
158 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
160 <member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Threading.CancellationToken)">
\r
161 <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
\r
162 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns>
\r
163 <param name="requestUri">The Uri the request is sent to.</param>
\r
164 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
165 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
167 <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri)">
\r
168 <summary>Send a GET request to the specified Uri as an asynchronous operation.</summary>
\r
169 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
170 <param name="requestUri">The Uri the request is sent to.</param>
\r
171 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
173 <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption)">
\r
174 <summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary>
\r
175 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
176 <param name="requestUri">The Uri the request is sent to.</param>
\r
177 <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
\r
178 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
180 <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
\r
181 <summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary>
\r
182 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
183 <param name="requestUri">The Uri the request is sent to.</param>
\r
184 <param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param>
\r
185 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
186 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
188 <member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Threading.CancellationToken)">
\r
189 <summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary>
\r
190 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
191 <param name="requestUri">The Uri the request is sent to.</param>
\r
192 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
193 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
195 <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.String)">
\r
196 <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
\r
197 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
198 <param name="requestUri">The Uri the request is sent to.</param>
\r
199 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
201 <member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.Uri)">
\r
202 <summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary>
\r
203 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
204 <param name="requestUri">The Uri the request is sent to.</param>
\r
205 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
207 <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.String)">
\r
208 <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
\r
209 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
210 <param name="requestUri">The Uri the request is sent to.</param>
\r
211 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
213 <member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.Uri)">
\r
214 <summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary>
\r
215 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
216 <param name="requestUri">The Uri the request is sent to.</param>
\r
217 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
219 <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.String)">
\r
220 <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
\r
221 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
222 <param name="requestUri">The Uri the request is sent to.</param>
\r
223 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
225 <member name="M:System.Net.Http.HttpClient.GetStringAsync(System.Uri)">
\r
226 <summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary>
\r
227 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
228 <param name="requestUri">The Uri the request is sent to.</param>
\r
229 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
231 <member name="P:System.Net.Http.HttpClient.MaxResponseContentBufferSize">
\r
232 <summary>Gets or sets the maximum number of bytes to buffer when reading the response content.</summary>
\r
233 <returns>Returns <see cref="T:System.Int32" />.The maximum number of bytes to buffer when reading the response content. The default value for this property is 2 gigabytes.</returns>
\r
234 <exception cref="T:System.ArgumentOutOfRangeException">The size specified is less than or equal to zero.</exception>
\r
235 <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception>
\r
236 <exception cref="T:System.ObjectDisposedException">The current instance has been disposed. </exception>
\r
238 <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent)">
\r
239 <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
\r
240 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
241 <param name="requestUri">The Uri the request is sent to.</param>
\r
242 <param name="content">The HTTP request content sent to the server.</param>
\r
243 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
245 <member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
\r
246 <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
\r
247 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
248 <param name="requestUri">The Uri the request is sent to.</param>
\r
249 <param name="content">The HTTP request content sent to the server.</param>
\r
250 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
251 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
253 <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent)">
\r
254 <summary>Send a POST request to the specified Uri as an asynchronous operation.</summary>
\r
255 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
256 <param name="requestUri">The Uri the request is sent to.</param>
\r
257 <param name="content">The HTTP request content sent to the server.</param>
\r
258 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
260 <member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
\r
261 <summary>Send a POST request with a cancellation token as an asynchronous operation.</summary>
\r
262 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
263 <param name="requestUri">The Uri the request is sent to.</param>
\r
264 <param name="content">The HTTP request content sent to the server.</param>
\r
265 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
266 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
268 <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent)">
\r
269 <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
\r
270 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
271 <param name="requestUri">The Uri the request is sent to.</param>
\r
272 <param name="content">The HTTP request content sent to the server.</param>
\r
273 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
275 <member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
\r
276 <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
\r
277 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
278 <param name="requestUri">The Uri the request is sent to.</param>
\r
279 <param name="content">The HTTP request content sent to the server.</param>
\r
280 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
281 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
283 <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent)">
\r
284 <summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary>
\r
285 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
286 <param name="requestUri">The Uri the request is sent to.</param>
\r
287 <param name="content">The HTTP request content sent to the server.</param>
\r
288 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
290 <member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)">
\r
291 <summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary>
\r
292 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
293 <param name="requestUri">The Uri the request is sent to.</param>
\r
294 <param name="content">The HTTP request content sent to the server.</param>
\r
295 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
296 <exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception>
\r
298 <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage)">
\r
299 <summary>Send an HTTP request as an asynchronous operation.</summary>
\r
300 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
301 <param name="request">The HTTP request message to send.</param>
\r
302 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
303 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
305 <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption)">
\r
306 <summary>Send an HTTP request as an asynchronous operation. </summary>
\r
307 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
308 <param name="request">The HTTP request message to send.</param>
\r
309 <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
\r
310 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
311 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
313 <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)">
\r
314 <summary>Send an HTTP request as an asynchronous operation.</summary>
\r
315 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
316 <param name="request">The HTTP request message to send.</param>
\r
317 <param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param>
\r
318 <param name="cancellationToken">The cancellation token to cancel operation.</param>
\r
319 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
320 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
322 <member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
323 <summary>Send an HTTP request as an asynchronous operation.</summary>
\r
324 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
325 <param name="request">The HTTP request message to send.</param>
\r
326 <param name="cancellationToken">The cancellation token to cancel operation.</param>
\r
327 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
328 <exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception>
\r
330 <member name="P:System.Net.Http.HttpClient.Timeout">
\r
331 <summary>Gets or sets the timespan to wait before the request times out.</summary>
\r
332 <returns>Returns <see cref="T:System.TimeSpan" />.The timespan to wait before the request times out.</returns>
\r
333 <exception cref="T:System.ArgumentOutOfRangeException">The timeout specified is less than or equal to zero and is not <see cref="F:System.Threading.Timeout.InfiniteTimeSpan" />.</exception>
\r
334 <exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception>
\r
335 <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
\r
337 <member name="T:System.Net.Http.HttpClientHandler">
\r
338 <summary>The default message handler used by <see cref="T:System.Net.Http.HttpClient" />. </summary>
\r
340 <member name="M:System.Net.Http.HttpClientHandler.#ctor">
\r
341 <summary>Creates an instance of a <see cref="T:System.Net.Http.HttpClientHandler" /> class.</summary>
\r
343 <member name="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect">
\r
344 <summary>Gets or sets a value that indicates whether the handler should follow redirection responses.</summary>
\r
345 <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler should follow redirection responses; otherwise false. The default value is true.</returns>
\r
347 <member name="P:System.Net.Http.HttpClientHandler.AutomaticDecompression">
\r
348 <summary>Gets or sets the type of decompression method used by the handler for automatic decompression of the HTTP content response.</summary>
\r
349 <returns>Returns <see cref="T:System.Net.DecompressionMethods" />.The automatic decompression method used by the handler. The default value is <see cref="F:System.Net.DecompressionMethods.None" />.</returns>
\r
351 <member name="P:System.Net.Http.HttpClientHandler.ClientCertificateOptions">
\r
352 <summary>Gets or sets the collection of security certificates that are associated with this handler.</summary>
\r
353 <returns>Returns <see cref="T:System.Net.Http.ClientCertificateOption" />.The collection of security certificates associated with this handler.</returns>
\r
355 <member name="P:System.Net.Http.HttpClientHandler.CookieContainer">
\r
356 <summary>Gets or sets the cookie container used to store server cookies by the handler.</summary>
\r
357 <returns>Returns <see cref="T:System.Net.CookieContainer" />.The cookie container used to store server cookies by the handler.</returns>
\r
359 <member name="P:System.Net.Http.HttpClientHandler.Credentials">
\r
360 <summary>Gets or sets authentication information used by this handler.</summary>
\r
361 <returns>Returns <see cref="T:System.Net.ICredentials" />.The authentication credentials associated with the handler. The default is null.</returns>
\r
363 <member name="M:System.Net.Http.HttpClientHandler.Dispose(System.Boolean)">
\r
364 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClientHandler" /> and optionally disposes of the managed resources.</summary>
\r
365 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
367 <member name="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections">
\r
368 <summary>Gets or sets the maximum number of redirects that the handler follows.</summary>
\r
369 <returns>Returns <see cref="T:System.Int32" />.The maximum number of redirection responses that the handler follows. The default value is 50.</returns>
\r
371 <member name="P:System.Net.Http.HttpClientHandler.MaxRequestContentBufferSize">
\r
372 <summary>Gets or sets the maximum request content buffer size used by the handler.</summary>
\r
373 <returns>Returns <see cref="T:System.Int32" />.The maximum request content buffer size in bytes. The default value is 2 gigabytes.</returns>
\r
375 <member name="P:System.Net.Http.HttpClientHandler.PreAuthenticate">
\r
376 <summary>Gets or sets a value that indicates whether the handler sends an Authorization header with the request.</summary>
\r
377 <returns>Returns <see cref="T:System.Boolean" />.true for the handler to send an HTTP Authorization header with requests after authentication has taken place; otherwise, false. The default is false.</returns>
\r
379 <member name="P:System.Net.Http.HttpClientHandler.Proxy">
\r
380 <summary>Gets or sets proxy information used by the handler.</summary>
\r
381 <returns>Returns <see cref="T:System.Net.IWebProxy" />.The proxy information used by the handler. The default value is null.</returns>
\r
383 <member name="M:System.Net.Http.HttpClientHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
384 <summary>Creates an instance of <see cref="T:System.Net.Http.HttpResponseMessage" /> based on the information provided in the <see cref="T:System.Net.Http.HttpRequestMessage" /> as an operation that will not block.</summary>
\r
385 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
386 <param name="request">The HTTP request message.</param>
\r
387 <param name="cancellationToken">A cancellation token to cancel the operation.</param>
\r
388 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
390 <member name="P:System.Net.Http.HttpClientHandler.SupportsAutomaticDecompression">
\r
391 <summary>Gets a value that indicates whether the handler supports automatic response content decompression.</summary>
\r
392 <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports automatic response content decompression; otherwise false. The default value is true.</returns>
\r
394 <member name="P:System.Net.Http.HttpClientHandler.SupportsProxy">
\r
395 <summary>Gets a value that indicates whether the handler supports proxy settings.</summary>
\r
396 <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports proxy settings; otherwise false. The default value is true.</returns>
\r
398 <member name="P:System.Net.Http.HttpClientHandler.SupportsRedirectConfiguration">
\r
399 <summary>Gets a value that indicates whether the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties.</summary>
\r
400 <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties; otherwise false. The default value is true.</returns>
\r
402 <member name="P:System.Net.Http.HttpClientHandler.UseCookies">
\r
403 <summary>Gets or sets a value that indicates whether the handler uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests.</summary>
\r
404 <returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests; otherwise false. The default value is true.</returns>
\r
406 <member name="P:System.Net.Http.HttpClientHandler.UseDefaultCredentials">
\r
407 <summary>Gets or sets a value that controls whether default credentials are sent with requests by the handler.</summary>
\r
408 <returns>Returns <see cref="T:System.Boolean" />.true if the default credentials are used; otherwise false. The default value is false.</returns>
\r
410 <member name="P:System.Net.Http.HttpClientHandler.UseProxy">
\r
411 <summary>Gets or sets a value that indicates whether the handler uses a proxy for requests. </summary>
\r
412 <returns>Returns <see cref="T:System.Boolean" />.true if the handler should use a proxy for requests; otherwise false. The default value is true.</returns>
\r
414 <member name="T:System.Net.Http.HttpCompletionOption">
\r
415 <summary>Indicates if <see cref="T:System.Net.Http.HttpClient" /> operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content. </summary>
\r
417 <member name="F:System.Net.Http.HttpCompletionOption.ResponseContentRead">
\r
418 <summary>The operation should complete after reading the entire response including the content.</summary>
\r
420 <member name="F:System.Net.Http.HttpCompletionOption.ResponseHeadersRead">
\r
421 <summary>The operation should complete as soon as a response is available and headers are read. The content is not read yet. </summary>
\r
423 <member name="T:System.Net.Http.HttpContent">
\r
424 <summary>A base class representing an HTTP entity body and content headers.</summary>
\r
426 <member name="M:System.Net.Http.HttpContent.#ctor">
\r
427 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpContent" /> class.</summary>
\r
429 <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream)">
\r
430 <summary>Serialize the HTTP content into a stream of bytes and copies it to the stream object provided as the <paramref name="stream" /> parameter.</summary>
\r
431 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
432 <param name="stream">The target stream.</param>
\r
434 <member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream,System.Net.TransportContext)">
\r
435 <summary>Serialize the HTTP content into a stream of bytes and copies it to the stream object provided as the <paramref name="stream" /> parameter.</summary>
\r
436 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
437 <param name="stream">The target stream.</param>
\r
438 <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
\r
440 <member name="M:System.Net.Http.HttpContent.CreateContentReadStreamAsync">
\r
441 <summary>Serialize the HTTP content to a memory stream as an asynchronous operation.</summary>
\r
442 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
444 <member name="M:System.Net.Http.HttpContent.Dispose">
\r
445 <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpContent" />.</summary>
\r
447 <member name="M:System.Net.Http.HttpContent.Dispose(System.Boolean)">
\r
448 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpContent" /> and optionally disposes of the managed resources.</summary>
\r
449 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
451 <member name="P:System.Net.Http.HttpContent.Headers">
\r
452 <summary>Gets the HTTP content headers as defined in RFC 2616.</summary>
\r
453 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpContentHeaders" />.The content headers as defined in RFC 2616.</returns>
\r
455 <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync">
\r
456 <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
\r
457 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
459 <member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Int64)">
\r
460 <summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary>
\r
461 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
462 <param name="maxBufferSize">The maximum size, in bytes, of the buffer to use.</param>
\r
464 <member name="M:System.Net.Http.HttpContent.ReadAsByteArrayAsync">
\r
465 <summary>Serialize the HTTP content to a byte array as an asynchronous operation.</summary>
\r
466 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
468 <member name="M:System.Net.Http.HttpContent.ReadAsStreamAsync">
\r
469 <summary>Serialize the HTTP content and return a stream that represents the content as an asynchronous operation. </summary>
\r
470 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
472 <member name="M:System.Net.Http.HttpContent.ReadAsStringAsync">
\r
473 <summary>Serialize the HTTP content to a string as an asynchronous operation.</summary>
\r
474 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
476 <member name="M:System.Net.Http.HttpContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
\r
477 <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
\r
478 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
479 <param name="stream">The target stream.</param>
\r
480 <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
\r
482 <member name="M:System.Net.Http.HttpContent.TryComputeLength(System.Int64@)">
\r
483 <summary>Determines whether the HTTP content has a valid length in bytes.</summary>
\r
484 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
\r
485 <param name="length">The length in bytes of the HTTP content.</param>
\r
487 <member name="T:System.Net.Http.HttpMessageHandler">
\r
488 <summary>A base type for HTTP message handlers.</summary>
\r
490 <member name="M:System.Net.Http.HttpMessageHandler.#ctor">
\r
491 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageHandler" /> class.</summary>
\r
493 <member name="M:System.Net.Http.HttpMessageHandler.Dispose">
\r
494 <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
\r
496 <member name="M:System.Net.Http.HttpMessageHandler.Dispose(System.Boolean)">
\r
497 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" /> and optionally disposes of the managed resources.</summary>
\r
498 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
500 <member name="M:System.Net.Http.HttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
501 <summary>Send an HTTP request as an asynchronous operation.</summary>
\r
502 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
503 <param name="request">The HTTP request message to send.</param>
\r
504 <param name="cancellationToken">The cancellation token to cancel operation.</param>
\r
505 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
507 <member name="T:System.Net.Http.HttpMessageInvoker">
\r
508 <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)" /> method on an Http handler chain. </summary>
\r
510 <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler)">
\r
511 <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
\r
512 <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
\r
514 <member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
\r
515 <summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary>
\r
516 <param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param>
\r
517 <param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param>
\r
519 <member name="M:System.Net.Http.HttpMessageInvoker.Dispose">
\r
520 <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" />.</summary>
\r
522 <member name="M:System.Net.Http.HttpMessageInvoker.Dispose(System.Boolean)">
\r
523 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" /> and optionally disposes of the managed resources.</summary>
\r
524 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
526 <member name="M:System.Net.Http.HttpMessageInvoker.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
527 <summary>Send an HTTP request as an asynchronous operation.</summary>
\r
528 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
529 <param name="request">The HTTP request message to send.</param>
\r
530 <param name="cancellationToken">The cancellation token to cancel operation.</param>
\r
531 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
533 <member name="T:System.Net.Http.HttpMethod">
\r
534 <summary>A helper class for retrieving and comparing standard HTTP methods and for creating new HTTP methods.</summary>
\r
536 <member name="M:System.Net.Http.HttpMethod.#ctor(System.String)">
\r
537 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMethod" /> class with a specific HTTP method.</summary>
\r
538 <param name="method">The HTTP method.</param>
\r
540 <member name="P:System.Net.Http.HttpMethod.Delete">
\r
541 <summary>Represents an HTTP DELETE protocol method.</summary>
\r
542 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
544 <member name="M:System.Net.Http.HttpMethod.Equals(System.Net.Http.HttpMethod)">
\r
545 <summary>Determines whether the specified <see cref="T:System.Net.Http.HttpMethod" /> is equal to the current <see cref="T:System.Object" />.</summary>
\r
546 <returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns>
\r
547 <param name="other">The HTTP method to compare with the current object.</param>
\r
549 <member name="M:System.Net.Http.HttpMethod.Equals(System.Object)">
\r
550 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />.</summary>
\r
551 <returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns>
\r
552 <param name="obj">The object to compare with the current object.</param>
\r
554 <member name="P:System.Net.Http.HttpMethod.Get">
\r
555 <summary>Represents an HTTP GET protocol method.</summary>
\r
556 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
558 <member name="M:System.Net.Http.HttpMethod.GetHashCode">
\r
559 <summary>Serves as a hash function for this type.</summary>
\r
560 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current <see cref="T:System.Object" />.</returns>
\r
562 <member name="P:System.Net.Http.HttpMethod.Head">
\r
563 <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>
\r
564 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
566 <member name="P:System.Net.Http.HttpMethod.Method">
\r
567 <summary>An HTTP method. </summary>
\r
568 <returns>Returns <see cref="T:System.String" />.An HTTP method represented as a <see cref="T:System.String" />.</returns>
\r
570 <member name="M:System.Net.Http.HttpMethod.op_Equality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
\r
571 <summary>The equality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary>
\r
572 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are equal; otherwise, false.</returns>
\r
573 <param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param>
\r
574 <param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param>
\r
576 <member name="M:System.Net.Http.HttpMethod.op_Inequality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)">
\r
577 <summary>The inequality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary>
\r
578 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are inequal; otherwise, false.</returns>
\r
579 <param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param>
\r
580 <param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param>
\r
582 <member name="P:System.Net.Http.HttpMethod.Options">
\r
583 <summary>Represents an HTTP OPTIONS protocol method.</summary>
\r
584 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
586 <member name="P:System.Net.Http.HttpMethod.Post">
\r
587 <summary>Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.</summary>
\r
588 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
590 <member name="P:System.Net.Http.HttpMethod.Put">
\r
591 <summary>Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.</summary>
\r
592 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
594 <member name="M:System.Net.Http.HttpMethod.ToString">
\r
595 <summary>Returns a string that represents the current object.</summary>
\r
596 <returns>Returns <see cref="T:System.String" />.A string representing the current object.</returns>
\r
598 <member name="P:System.Net.Http.HttpMethod.Trace">
\r
599 <summary>Represents an HTTP TRACE protocol method.</summary>
\r
600 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns>
\r
602 <member name="T:System.Net.Http.HttpRequestException">
\r
603 <summary>A base class for exceptions thrown by the <see cref="T:System.Net.Http.HttpClient" /> and <see cref="T:System.Net.Http.HttpMessageHandler" /> classes.</summary>
\r
605 <member name="M:System.Net.Http.HttpRequestException.#ctor">
\r
606 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class.</summary>
\r
608 <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String)">
\r
609 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception.</summary>
\r
610 <param name="message">A message that describes the current exception.</param>
\r
612 <member name="M:System.Net.Http.HttpRequestException.#ctor(System.String,System.Exception)">
\r
613 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception and an inner exception.</summary>
\r
614 <param name="message">A message that describes the current exception.</param>
\r
615 <param name="inner">The inner exception.</param>
\r
617 <member name="T:System.Net.Http.HttpRequestMessage">
\r
618 <summary>Represents a HTTP request message.</summary>
\r
620 <member name="M:System.Net.Http.HttpRequestMessage.#ctor">
\r
621 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class.</summary>
\r
623 <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.String)">
\r
624 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary>
\r
625 <param name="method">The HTTP method.</param>
\r
626 <param name="requestUri">A string that represents the request <see cref="T:System.Uri" />.</param>
\r
628 <member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.Uri)">
\r
629 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary>
\r
630 <param name="method">The HTTP method.</param>
\r
631 <param name="requestUri">The <see cref="T:System.Uri" /> to request.</param>
\r
633 <member name="P:System.Net.Http.HttpRequestMessage.Content">
\r
634 <summary>Gets or sets the contents of the HTTP message. </summary>
\r
635 <returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of a message</returns>
\r
637 <member name="M:System.Net.Http.HttpRequestMessage.Dispose">
\r
638 <summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" />.</summary>
\r
640 <member name="M:System.Net.Http.HttpRequestMessage.Dispose(System.Boolean)">
\r
641 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" /> and optionally disposes of the managed resources.</summary>
\r
642 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
644 <member name="P:System.Net.Http.HttpRequestMessage.Headers">
\r
645 <summary>Gets the collection of HTTP request headers.</summary>
\r
646 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The collection of HTTP request headers.</returns>
\r
648 <member name="P:System.Net.Http.HttpRequestMessage.Method">
\r
649 <summary>Gets or sets the HTTP method used by the HTTP request message.</summary>
\r
650 <returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.The HTTP method used by the request message. The default is the GET method.</returns>
\r
652 <member name="P:System.Net.Http.HttpRequestMessage.Properties">
\r
653 <summary>Gets a set of properties for the HTTP request.</summary>
\r
654 <returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
\r
656 <member name="P:System.Net.Http.HttpRequestMessage.RequestUri">
\r
657 <summary>Gets or sets the <see cref="T:System.Uri" /> used for the HTTP request.</summary>
\r
658 <returns>Returns <see cref="T:System.Uri" />.The <see cref="T:System.Uri" /> used for the HTTP request.</returns>
\r
660 <member name="M:System.Net.Http.HttpRequestMessage.ToString">
\r
661 <summary>Returns a string that represents the current object.</summary>
\r
662 <returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns>
\r
664 <member name="P:System.Net.Http.HttpRequestMessage.Version">
\r
665 <summary>Gets or sets the HTTP message version.</summary>
\r
666 <returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1.</returns>
\r
668 <member name="T:System.Net.Http.HttpResponseMessage">
\r
669 <summary>Represents a HTTP response message including the status code and data.</summary>
\r
671 <member name="M:System.Net.Http.HttpResponseMessage.#ctor">
\r
672 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class.</summary>
\r
674 <member name="M:System.Net.Http.HttpResponseMessage.#ctor(System.Net.HttpStatusCode)">
\r
675 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class with a specific <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" />.</summary>
\r
676 <param name="statusCode">The status code of the HTTP response.</param>
\r
678 <member name="P:System.Net.Http.HttpResponseMessage.Content">
\r
679 <summary>Gets or sets the content of a HTTP response message. </summary>
\r
680 <returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of the HTTP response message.</returns>
\r
682 <member name="M:System.Net.Http.HttpResponseMessage.Dispose">
\r
683 <summary>Releases the unmanaged resources and disposes of unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" />.</summary>
\r
685 <member name="M:System.Net.Http.HttpResponseMessage.Dispose(System.Boolean)">
\r
686 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" /> and optionally disposes of the managed resources.</summary>
\r
687 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
689 <member name="M:System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode">
\r
690 <summary>Throws an exception if the <see cref="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode" /> property for the HTTP response is false.</summary>
\r
691 <returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message if the call is successful.</returns>
\r
693 <member name="P:System.Net.Http.HttpResponseMessage.Headers">
\r
694 <summary>Gets the collection of HTTP response headers. </summary>
\r
695 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpResponseHeaders" />.The collection of HTTP response headers.</returns>
\r
697 <member name="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode">
\r
698 <summary>Gets a value that indicates if the HTTP response was successful.</summary>
\r
699 <returns>Returns <see cref="T:System.Boolean" />.A value that indicates if the HTTP response was successful. true if <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" /> was in the range 200-299; otherwise false.</returns>
\r
701 <member name="P:System.Net.Http.HttpResponseMessage.ReasonPhrase">
\r
702 <summary>Gets or sets the reason phrase which typically is sent by servers together with the status code. </summary>
\r
703 <returns>Returns <see cref="T:System.String" />.The reason phrase sent by the server.</returns>
\r
705 <member name="P:System.Net.Http.HttpResponseMessage.RequestMessage">
\r
706 <summary>Gets or sets the request message which led to this response message.</summary>
\r
707 <returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The request message which led to this response message.</returns>
\r
709 <member name="P:System.Net.Http.HttpResponseMessage.StatusCode">
\r
710 <summary>Gets or sets the status code of the HTTP response.</summary>
\r
711 <returns>Returns <see cref="T:System.Net.HttpStatusCode" />.The status code of the HTTP response.</returns>
\r
713 <member name="M:System.Net.Http.HttpResponseMessage.ToString">
\r
714 <summary>Returns a string that represents the current object.</summary>
\r
715 <returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns>
\r
717 <member name="P:System.Net.Http.HttpResponseMessage.Version">
\r
718 <summary>Gets or sets the HTTP message version. </summary>
\r
719 <returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1. </returns>
\r
721 <member name="T:System.Net.Http.MessageProcessingHandler">
\r
722 <summary>A base type for handlers which only do some small processing of request and/or response messages.</summary>
\r
724 <member name="M:System.Net.Http.MessageProcessingHandler.#ctor">
\r
725 <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class.</summary>
\r
727 <member name="M:System.Net.Http.MessageProcessingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
\r
728 <summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class with a specific inner handler.</summary>
\r
729 <param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
\r
731 <member name="M:System.Net.Http.MessageProcessingHandler.ProcessRequest(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
732 <summary>Performs processing on each request sent to the server.</summary>
\r
733 <returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The HTTP request message that was processed.</returns>
\r
734 <param name="request">The HTTP request message to process.</param>
\r
735 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
737 <member name="M:System.Net.Http.MessageProcessingHandler.ProcessResponse(System.Net.Http.HttpResponseMessage,System.Threading.CancellationToken)">
\r
738 <summary>Perform processing on each response from the server.</summary>
\r
739 <returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message that was processed.</returns>
\r
740 <param name="response">The HTTP response message to process.</param>
\r
741 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
743 <member name="M:System.Net.Http.MessageProcessingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
\r
744 <summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
\r
745 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
746 <param name="request">The HTTP request message to send to the server.</param>
\r
747 <param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
\r
748 <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
\r
750 <member name="T:System.Net.Http.MultipartContent">
\r
751 <summary>Provides a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary>
\r
753 <member name="M:System.Net.Http.MultipartContent.#ctor">
\r
754 <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
\r
756 <member name="M:System.Net.Http.MultipartContent.#ctor(System.String)">
\r
757 <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
\r
758 <param name="subtype">The subtype of the multipart content.</param>
\r
759 <exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or contains only white space characters.</exception>
\r
761 <member name="M:System.Net.Http.MultipartContent.#ctor(System.String,System.String)">
\r
762 <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary>
\r
763 <param name="subtype">The subtype of the multipart content.</param>
\r
764 <param name="boundary">The boundary string for the multipart content.</param>
\r
765 <exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or an empty string.The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception>
\r
766 <exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception>
\r
768 <member name="M:System.Net.Http.MultipartContent.Add(System.Net.Http.HttpContent)">
\r
769 <summary>Add multipart HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary>
\r
770 <param name="content">The HTTP content to add to the collection.</param>
\r
771 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
\r
773 <member name="M:System.Net.Http.MultipartContent.Dispose(System.Boolean)">
\r
774 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.MultipartContent" /> and optionally disposes of the managed resources.</summary>
\r
775 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
777 <member name="M:System.Net.Http.MultipartContent.GetEnumerator">
\r
778 <summary>Returns an enumerator that iterates through the collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification..</summary>
\r
779 <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An object that can be used to iterate through the collection.</returns>
\r
781 <member name="M:System.Net.Http.MultipartContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
\r
782 <summary>Serialize the multipart HTTP content to a stream as an asynchronous operation.</summary>
\r
783 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
784 <param name="stream">The target stream.</param>
\r
785 <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
\r
787 <member name="M:System.Net.Http.MultipartContent.System#Collections#IEnumerable#GetEnumerator">
\r
788 <summary>The explicit implementation of the <see cref="M:System.Net.Http.MultipartContent.GetEnumerator" /> method.</summary>
\r
789 <returns>Returns <see cref="T:System.Collections.IEnumerator" />.An object that can be used to iterate through the collection.</returns>
\r
791 <member name="M:System.Net.Http.MultipartContent.TryComputeLength(System.Int64@)">
\r
792 <summary>Determines whether the HTTP multipart content has a valid length in bytes.</summary>
\r
793 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
\r
794 <param name="length">The length in bytes of the HHTP content.</param>
\r
796 <member name="T:System.Net.Http.MultipartFormDataContent">
\r
797 <summary>Provides a container for content encoded using multipart/form-data MIME type.</summary>
\r
799 <member name="M:System.Net.Http.MultipartFormDataContent.#ctor">
\r
800 <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary>
\r
802 <member name="M:System.Net.Http.MultipartFormDataContent.#ctor(System.String)">
\r
803 <summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary>
\r
804 <param name="boundary">The boundary string for the multipart form data content.</param>
\r
805 <exception cref="T:System.ArgumentException">The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception>
\r
806 <exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception>
\r
808 <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent)">
\r
809 <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
\r
810 <param name="content">The HTTP content to add to the collection.</param>
\r
811 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
\r
813 <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String)">
\r
814 <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
\r
815 <param name="content">The HTTP content to add to the collection.</param>
\r
816 <param name="name">The name for the HTTP content to add.</param>
\r
817 <exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.</exception>
\r
818 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
\r
820 <member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String,System.String)">
\r
821 <summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary>
\r
822 <param name="content">The HTTP content to add to the collection.</param>
\r
823 <param name="name">The name for the HTTP content to add.</param>
\r
824 <param name="fileName">The file name for the HTTP content to add to the collection.</param>
\r
825 <exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.-or-The <paramref name="fileName" /> was null or contains only white space characters.</exception>
\r
826 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
\r
828 <member name="T:System.Net.Http.StreamContent">
\r
829 <summary>Provides HTTP content based on a stream.</summary>
\r
831 <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream)">
\r
832 <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
\r
833 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
\r
835 <member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream,System.Int32)">
\r
836 <summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary>
\r
837 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param>
\r
838 <param name="bufferSize">The size, in bytes, of the buffer for the <see cref="T:System.Net.Http.StreamContent" />.</param>
\r
839 <exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception>
\r
840 <exception cref="T:System.OutOfRangeException">The <paramref name="bufferSize" /> was less than or equal to zero. </exception>
\r
842 <member name="M:System.Net.Http.StreamContent.CreateContentReadStreamAsync">
\r
843 <summary>Write the HTTP stream content to a memory stream as an asynchronous operation.</summary>
\r
844 <returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
\r
846 <member name="M:System.Net.Http.StreamContent.Dispose(System.Boolean)">
\r
847 <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.StreamContent" /> and optionally disposes of the managed resources.</summary>
\r
848 <param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param>
\r
850 <member name="M:System.Net.Http.StreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
\r
851 <summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary>
\r
852 <returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns>
\r
853 <param name="stream">The target stream.</param>
\r
854 <param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param>
\r
856 <member name="M:System.Net.Http.StreamContent.TryComputeLength(System.Int64@)">
\r
857 <summary>Determines whether the stream content has a valid length in bytes.</summary>
\r
858 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns>
\r
859 <param name="length">The length in bytes of the stream content.</param>
\r
861 <member name="T:System.Net.Http.StringContent">
\r
862 <summary>Provides HTTP content based on a string.</summary>
\r
864 <member name="M:System.Net.Http.StringContent.#ctor(System.String)">
\r
865 <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
\r
866 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
\r
868 <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding)">
\r
869 <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
\r
870 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
\r
871 <param name="encoding">The encoding to use for the content.</param>
\r
873 <member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding,System.String)">
\r
874 <summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary>
\r
875 <param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param>
\r
876 <param name="encoding">The encoding to use for the content.</param>
\r
877 <param name="mediaType">The media type to use for the content.</param>
\r
879 <member name="T:System.Net.Http.Headers.AuthenticationHeaderValue">
\r
880 <summary>Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.</summary>
\r
882 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String)">
\r
883 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary>
\r
884 <param name="scheme">The scheme to use for authorization.</param>
\r
886 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String,System.String)">
\r
887 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary>
\r
888 <param name="scheme">The scheme to use for authorization.</param>
\r
889 <param name="parameter">The credentials containing the authentication information of the user agent for the resource being requested.</param>
\r
891 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Equals(System.Object)">
\r
892 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
\r
893 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
894 <param name="obj">The object to compare with the current object. </param>
\r
896 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.GetHashCode">
\r
897 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
\r
898 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
900 <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Parameter">
\r
901 <summary>Gets the credentials containing the authentication information of the user agent for the resource being requested.</summary>
\r
902 <returns>Returns <see cref="T:System.String" />.The credentials containing the authentication information.</returns>
\r
904 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Parse(System.String)">
\r
905 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</summary>
\r
906 <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
\r
907 <param name="input">A string that represents authentication header value information.</param>
\r
908 <exception cref="T:System.ArgumentNullException">
\r
909 <paramref name="input" /> is a null reference.</exception>
\r
910 <exception cref="T:System.FormatException">
\r
911 <paramref name="input" /> is not valid authentication header value information.</exception>
\r
913 <member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Scheme">
\r
914 <summary>Gets the scheme to use for authorization.</summary>
\r
915 <returns>Returns <see cref="T:System.String" />.The scheme to use for authorization.</returns>
\r
917 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.ToString">
\r
918 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary>
\r
919 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
921 <member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.TryParse(System.String,System.Net.Http.Headers.AuthenticationHeaderValue@)">
\r
922 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information.</summary>
\r
923 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information; otherwise, false.</returns>
\r
924 <param name="input">The string to validate.</param>
\r
925 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> version of the string.</param>
\r
927 <member name="T:System.Net.Http.Headers.CacheControlHeaderValue">
\r
928 <summary>Represents the value of the Cache-Control header.</summary>
\r
930 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.#ctor">
\r
931 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> class.</summary>
\r
933 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Equals(System.Object)">
\r
934 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
\r
935 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
936 <param name="obj">The object to compare with the current object.</param>
\r
938 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Extensions">
\r
939 <summary>Cache-extension tokens, each with an optional assigned value.</summary>
\r
940 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of cache-extension tokens each with an optional assigned value.</returns>
\r
942 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.GetHashCode">
\r
943 <summary>Serves as a hash function for a <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
\r
944 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
946 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxAge">
\r
947 <summary>The maximum age, specified in seconds, that the HTTP client is willing to accept a response. </summary>
\r
948 <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds. </returns>
\r
950 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStale">
\r
951 <summary>Whether an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
\r
952 <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a response that has exceed the expiration time; otherwise, false.</returns>
\r
954 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStaleLimit">
\r
955 <summary>The maximum time, in seconds, an HTTP client is willing to accept a response that has exceeded its expiration time.</summary>
\r
956 <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
\r
958 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MinFresh">
\r
959 <summary>The freshness lifetime, in seconds, that an HTTP client is willing to accept a response.</summary>
\r
960 <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
\r
962 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MustRevalidate">
\r
963 <summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale.</summary>
\r
964 <returns>Returns <see cref="T:System.Boolean" />.true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale; otherwise, false.</returns>
\r
966 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCache">
\r
967 <summary>Whether an HTTP client is willing to accept a cached response.</summary>
\r
968 <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a cached response; otherwise, false.</returns>
\r
970 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCacheHeaders">
\r
971 <summary>A collection of fieldnames in the "no-cache" directive in a cache-control header field on an HTTP response.</summary>
\r
972 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns>
\r
974 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoStore">
\r
975 <summary>Whether a cache must not store any part of either the HTTP request mressage or any response.</summary>
\r
976 <returns>Returns <see cref="T:System.Boolean" />.true if a cache must not store any part of either the HTTP request mressage or any response; otherwise, false.</returns>
\r
978 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoTransform">
\r
979 <summary>Whether a cache or proxy must not change any aspect of the entity-body.</summary>
\r
980 <returns>Returns <see cref="T:System.Boolean" />.true if a cache or proxy must not change any aspect of the entity-body; otherwise, false.</returns>
\r
982 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.OnlyIfCached">
\r
983 <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>
\r
984 <returns>Returns <see cref="T:System.Boolean" />.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>
\r
986 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Parse(System.String)">
\r
987 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</summary>
\r
988 <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.A <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</returns>
\r
989 <param name="input">A string that represents cache-control header value information.</param>
\r
990 <exception cref="T:System.ArgumentNullException">
\r
991 <paramref name="input" /> is a null reference.</exception>
\r
992 <exception cref="T:System.FormatException">
\r
993 <paramref name="input" /> is not valid cache-control header value information.</exception>
\r
995 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Private">
\r
996 <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>
\r
997 <returns>Returns <see cref="T:System.Boolean" />.true if the HTTP response message is intended for a single user and must not be cached by a shared cache; otherwise, false.</returns>
\r
999 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.PrivateHeaders">
\r
1000 <summary>A collection fieldnames in the "private" directive in a cache-control header field on an HTTP response.</summary>
\r
1001 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns>
\r
1003 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.ProxyRevalidate">
\r
1004 <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>
\r
1005 <returns>Returns <see cref="T:System.Boolean" />.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>
\r
1007 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Public">
\r
1008 <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>
\r
1009 <returns>Returns <see cref="T:System.Boolean" />.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>
\r
1011 <member name="P:System.Net.Http.Headers.CacheControlHeaderValue.SharedMaxAge">
\r
1012 <summary>The shared maximum age, specified in seconds, in an HTTP response that overrides the "max-age" directive in a cache-control header or an Expires header for a shared cache.</summary>
\r
1013 <returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns>
\r
1015 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.ToString">
\r
1016 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary>
\r
1017 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1019 <member name="M:System.Net.Http.Headers.CacheControlHeaderValue.TryParse(System.String,System.Net.Http.Headers.CacheControlHeaderValue@)">
\r
1020 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information.</summary>
\r
1021 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information; otherwise, false.</returns>
\r
1022 <param name="input">The string to validate.</param>
\r
1023 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> version of the string.</param>
\r
1025 <member name="T:System.Net.Http.Headers.ContentDispositionHeaderValue">
\r
1026 <summary>Represents the value of the Content-Disposition header.</summary>
\r
1028 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.Net.Http.Headers.ContentDispositionHeaderValue)">
\r
1029 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary>
\r
1030 <param name="source">A <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />. </param>
\r
1032 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.String)">
\r
1033 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary>
\r
1034 <param name="dispositionType">A string that contains a <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.</param>
\r
1036 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.CreationDate">
\r
1037 <summary>The date at which the file was created.</summary>
\r
1038 <returns>Returns <see cref="T:System.DateTimeOffset" />.The file creation date.</returns>
\r
1040 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.DispositionType">
\r
1041 <summary>The disposition type for a content body part.</summary>
\r
1042 <returns>Returns <see cref="T:System.String" />.The disposition type. </returns>
\r
1044 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Equals(System.Object)">
\r
1045 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
\r
1046 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1047 <param name="obj">The object to compare with the current object.</param>
\r
1049 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileName">
\r
1050 <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>
\r
1051 <returns>Returns <see cref="T:System.String" />.A suggested filename.</returns>
\r
1053 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileNameStar">
\r
1054 <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>
\r
1055 <returns>Returns <see cref="T:System.String" />.A suggested filename of the form filename*.</returns>
\r
1057 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.GetHashCode">
\r
1058 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
\r
1059 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1061 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ModificationDate">
\r
1062 <summary>The date at which the file was last modified. </summary>
\r
1063 <returns>Returns <see cref="T:System.DateTimeOffset" />.The file modification date.</returns>
\r
1065 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Name">
\r
1066 <summary>The name for a content body part.</summary>
\r
1067 <returns>Returns <see cref="T:System.String" />.The name for the content body part.</returns>
\r
1069 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Parameters">
\r
1070 <summary>A set of parameters included the Content-Disposition header.</summary>
\r
1071 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of parameters. </returns>
\r
1073 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Parse(System.String)">
\r
1074 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</summary>
\r
1075 <returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</returns>
\r
1076 <param name="input">A string that represents content disposition header value information.</param>
\r
1077 <exception cref="T:System.ArgumentNullException">
\r
1078 <paramref name="input" /> is a null reference.</exception>
\r
1079 <exception cref="T:System.FormatException">
\r
1080 <paramref name="input" /> is not valid content disposition header value information.</exception>
\r
1082 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ReadDate">
\r
1083 <summary>The date the file was last read.</summary>
\r
1084 <returns>Returns <see cref="T:System.DateTimeOffset" />.The last read date.</returns>
\r
1086 <member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Size">
\r
1087 <summary>The approximate size, in bytes, of the file. </summary>
\r
1088 <returns>Returns <see cref="T:System.Int64" />.The approximate size, in bytes.</returns>
\r
1090 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.ToString">
\r
1091 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary>
\r
1092 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1094 <member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentDispositionHeaderValue@)">
\r
1095 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information.</summary>
\r
1096 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information; otherwise, false.</returns>
\r
1097 <param name="input">The string to validate.</param>
\r
1098 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> version of the string.</param>
\r
1100 <member name="T:System.Net.Http.Headers.ContentRangeHeaderValue">
\r
1101 <summary>Represents the value of the Content-Range header.</summary>
\r
1103 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64)">
\r
1104 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
\r
1105 <param name="length">The starting or ending point of the range, in bytes.</param>
\r
1107 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64)">
\r
1108 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
\r
1109 <param name="from">The position, in bytes, at which to start sending data.</param>
\r
1110 <param name="to">The position, in bytes, at which to stop sending data.</param>
\r
1112 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64,System.Int64)">
\r
1113 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary>
\r
1114 <param name="from">The position, in bytes, at which to start sending data.</param>
\r
1115 <param name="to">The position, in bytes, at which to stop sending data.</param>
\r
1116 <param name="length">The starting or ending point of the range, in bytes.</param>
\r
1118 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Equals(System.Object)">
\r
1119 <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
\r
1120 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1121 <param name="obj">The object to compare with the current object.</param>
\r
1123 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.From">
\r
1124 <summary>Gets the position at which to start sending data.</summary>
\r
1125 <returns>Returns <see cref="T:System.Int64" />.The position, in bytes, at which to start sending data.</returns>
\r
1127 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.GetHashCode">
\r
1128 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
\r
1129 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1131 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasLength">
\r
1132 <summary>Gets whether the Content-Range header has a length specified.</summary>
\r
1133 <returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a length specified; otherwise, false.</returns>
\r
1135 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasRange">
\r
1136 <summary>Gets whether the Content-Range has a range specified. </summary>
\r
1137 <returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a range specified; otherwise, false.</returns>
\r
1139 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Length">
\r
1140 <summary>Gets the length of the full entity-body.</summary>
\r
1141 <returns>Returns <see cref="T:System.Int64" />.The length of the full entity-body.</returns>
\r
1143 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Parse(System.String)">
\r
1144 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</summary>
\r
1145 <returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</returns>
\r
1146 <param name="input">A string that represents content range header value information.</param>
\r
1147 <exception cref="T:System.ArgumentNullException">
\r
1148 <paramref name="input" /> is a null reference.</exception>
\r
1149 <exception cref="T:System.FormatException">
\r
1150 <paramref name="input" /> is not valid content range header value information.</exception>
\r
1152 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.To">
\r
1153 <summary>Gets the position at which to stop sending data.</summary>
\r
1154 <returns>Returns <see cref="T:System.Int64" />.The position at which to stop sending data.</returns>
\r
1156 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.ToString">
\r
1157 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary>
\r
1158 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1160 <member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentRangeHeaderValue@)">
\r
1161 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information.</summary>
\r
1162 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information; otherwise, false.</returns>
\r
1163 <param name="input">The string to validate.</param>
\r
1164 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> version of the string.</param>
\r
1166 <member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Unit">
\r
1167 <summary>The range units used.</summary>
\r
1168 <returns>Returns <see cref="T:System.String" />.A <see cref="T:System.String" /> that contains range units. </returns>
\r
1170 <member name="T:System.Net.Http.Headers.EntityTagHeaderValue">
\r
1171 <summary>Represents an entity-tag header value.</summary>
\r
1173 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String)">
\r
1174 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary>
\r
1175 <param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param>
\r
1177 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String,System.Boolean)">
\r
1178 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary>
\r
1179 <param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param>
\r
1180 <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 <paramref name="isWeak" /> should be set to true. If the entity-tag header is a strong validator, then <paramref name="isWeak" /> should be set to false.</param>
\r
1182 <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Any">
\r
1183 <summary>Gets the entity-tag header value.</summary>
\r
1184 <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</returns>
\r
1186 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)">
\r
1187 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
\r
1188 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1189 <param name="obj">The object to compare with the current object.</param>
\r
1191 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.GetHashCode">
\r
1192 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
\r
1193 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1195 <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.IsWeak">
\r
1196 <summary>Gets whether the entity-tag is prefaced by a weakness indicator.</summary>
\r
1197 <returns>Returns <see cref="T:System.Boolean" />.true if the entity-tag is prefaced by a weakness indicator; otherwise, false.</returns>
\r
1199 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Parse(System.String)">
\r
1200 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</summary>
\r
1201 <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.An <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</returns>
\r
1202 <param name="input">A string that represents entity tag header value information.</param>
\r
1203 <exception cref="T:System.ArgumentNullException">
\r
1204 <paramref name="input" /> is a null reference.</exception>
\r
1205 <exception cref="T:System.FormatException">
\r
1206 <paramref name="input" /> is not valid entity tag header value information.</exception>
\r
1208 <member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Tag">
\r
1209 <summary>Gets the opaque quoted string. </summary>
\r
1210 <returns>Returns <see cref="T:System.String" />.An opaque quoted string.</returns>
\r
1212 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.ToString">
\r
1213 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary>
\r
1214 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1216 <member name="M:System.Net.Http.Headers.EntityTagHeaderValue.TryParse(System.String,System.Net.Http.Headers.EntityTagHeaderValue@)">
\r
1217 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information.</summary>
\r
1218 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information; otherwise, false.</returns>
\r
1219 <param name="input">The string to validate.</param>
\r
1220 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> version of the string.</param>
\r
1222 <member name="T:System.Net.Http.Headers.HttpContentHeaders">
\r
1223 <summary>Represents the collection of Content Headers as defined in RFC 2616.</summary>
\r
1225 <member name="P:System.Net.Http.Headers.HttpContentHeaders.Allow">
\r
1226 <summary>Gets the value of the Allow content header on an HTTP response. </summary>
\r
1227 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Allow header on an HTTP response.</returns>
\r
1229 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentDisposition">
\r
1230 <summary>Gets the value of the Content-Disposition content header on an HTTP response.</summary>
\r
1231 <returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.The value of the Content-Disposition content header on an HTTP response.</returns>
\r
1233 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentEncoding">
\r
1234 <summary>Gets the value of the Content-Encoding content header on an HTTP response.</summary>
\r
1235 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Encoding content header on an HTTP response.</returns>
\r
1237 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLanguage">
\r
1238 <summary>Gets the value of the Content-Language content header on an HTTP response.</summary>
\r
1239 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Language content header on an HTTP response.</returns>
\r
1241 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLength">
\r
1242 <summary>Gets or sets the value of the Content-Length content header on an HTTP response.</summary>
\r
1243 <returns>Returns <see cref="T:System.Int64" />.The value of the Content-Length content header on an HTTP response.</returns>
\r
1245 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLocation">
\r
1246 <summary>Gets or sets the value of the Content-Location content header on an HTTP response.</summary>
\r
1247 <returns>Returns <see cref="T:System.Uri" />.The value of the Content-Location content header on an HTTP response.</returns>
\r
1249 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentMD5">
\r
1250 <summary>Gets or sets the value of the Content-MD5 content header on an HTTP response.</summary>
\r
1251 <returns>Returns <see cref="T:System.Byte" />.The value of the Content-MD5 content header on an HTTP response.</returns>
\r
1253 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentRange">
\r
1254 <summary>Gets or sets the value of the Content-Range content header on an HTTP response.</summary>
\r
1255 <returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.The value of the Content-Range content header on an HTTP response.</returns>
\r
1257 <member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentType">
\r
1258 <summary>Gets or sets the value of the Content-Type content header on an HTTP response.</summary>
\r
1259 <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />.The value of the Content-Type content header on an HTTP response.</returns>
\r
1261 <member name="P:System.Net.Http.Headers.HttpContentHeaders.Expires">
\r
1262 <summary>Gets or sets the value of the Expires content header on an HTTP response.</summary>
\r
1263 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Expires content header on an HTTP response.</returns>
\r
1265 <member name="P:System.Net.Http.Headers.HttpContentHeaders.LastModified">
\r
1266 <summary>Gets or sets the value of the Last-Modified content header on an HTTP response.</summary>
\r
1267 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Last-Modified content header on an HTTP response.</returns>
\r
1269 <member name="T:System.Net.Http.Headers.HttpHeaders">
\r
1270 <summary>A collection of headers and their values as defined in RFC 2616.</summary>
\r
1272 <member name="M:System.Net.Http.Headers.HttpHeaders.#ctor">
\r
1273 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> class.</summary>
\r
1275 <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.Collections.Generic.IEnumerable{System.String})">
\r
1276 <summary>Adds the specified header and its values into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1277 <param name="name">The header to add to the collection.</param>
\r
1278 <param name="values">A list of header values to add to the collection.</param>
\r
1280 <member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.String)">
\r
1281 <summary>Adds the specified header and its value into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1282 <param name="name">The header to add to the collection.</param>
\r
1283 <param name="value">The content of the header.</param>
\r
1285 <member name="M:System.Net.Http.Headers.HttpHeaders.Clear">
\r
1286 <summary>Removes all headers from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1288 <member name="M:System.Net.Http.Headers.HttpHeaders.Contains(System.String)">
\r
1289 <summary>Returns if a specific header exists in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1290 <returns>Returns <see cref="T:System.Boolean" />.true is the specified header exists in the collection; otherwise false.</returns>
\r
1291 <param name="name">The specific header.</param>
\r
1293 <member name="M:System.Net.Http.Headers.HttpHeaders.GetEnumerator">
\r
1294 <summary>Returns an enumerator that can iterate through the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> instance.</summary>
\r
1295 <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An enumerator for the <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns>
\r
1297 <member name="M:System.Net.Http.Headers.HttpHeaders.GetValues(System.String)">
\r
1298 <summary>Returns all header values for a specified header stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1299 <returns>Returns <see cref="T:System.Collections.Generic.IEnumerable`1" />.An array of header strings.</returns>
\r
1300 <param name="name">The specified header to return values for.</param>
\r
1302 <member name="M:System.Net.Http.Headers.HttpHeaders.Remove(System.String)">
\r
1303 <summary>Removes the specified header from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1304 <returns>Returns <see cref="T:System.Boolean" />.</returns>
\r
1305 <param name="name">The name of the header to remove from the collection. </param>
\r
1307 <member name="M:System.Net.Http.Headers.HttpHeaders.System#Collections#IEnumerable#GetEnumerator">
\r
1308 <summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</summary>
\r
1309 <returns>Returns <see cref="T:System.Collections.IEnumerator" />.An instance of an implementation of an <see cref="T:System.Collections.IEnumerator" /> that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns>
\r
1311 <member name="M:System.Net.Http.Headers.HttpHeaders.ToString">
\r
1312 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaders" /> object.</summary>
\r
1313 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1315 <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.Collections.Generic.IEnumerable{System.String})">
\r
1316 <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" /> collection without validating the provided information.</summary>
\r
1317 <returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="values" /> could be added to the collection; otherwise false.</returns>
\r
1318 <param name="name">The header to add to the collection.</param>
\r
1319 <param name="values">The values of the header.</param>
\r
1321 <member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.String)">
\r
1322 <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" /> collection without validating the provided information.</summary>
\r
1323 <returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="value" /> could be added to the collection; otherwise false.</returns>
\r
1324 <param name="name">The header to add to the collection.</param>
\r
1325 <param name="value">The content of the header.</param>
\r
1327 <member name="M:System.Net.Http.Headers.HttpHeaders.TryGetValues(System.String,System.Collections.Generic.IEnumerable{System.String}@)">
\r
1328 <summary>Return if a specified header and specified values are stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary>
\r
1329 <returns>Returns <see cref="T:System.Boolean" />.true is the specified header <paramref name="name" /> and values are stored in the collection; otherwise false.</returns>
\r
1330 <param name="name">The specified header.</param>
\r
1331 <param name="values">The specified header values.</param>
\r
1333 <member name="T:System.Net.Http.Headers.HttpHeaderValueCollection`1">
\r
1334 <summary>Represents a collection of header values.</summary>
\r
1335 <typeparam name="T">The header collection type.</typeparam>
\r
1337 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Add(`0)">
\r
1338 <summary>Adds an entry to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1339 <param name="item">The item to add to the header collection.</param>
\r
1341 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Clear">
\r
1342 <summary>Removes all entries from the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1344 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Contains(`0)">
\r
1345 <summary>Determines if the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> contains an item.</summary>
\r
1346 <returns>Returns <see cref="T:System.Boolean" />.true if the entry is contained in the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance; otherwise, false</returns>
\r
1347 <param name="item">The item to find to the header collection.</param>
\r
1349 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.CopyTo(`0[],System.Int32)">
\r
1350 <summary>Copies the entire <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
\r
1351 <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
\r
1352 <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
\r
1354 <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.Count">
\r
1355 <summary>Gets the number of headers in the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1356 <returns>Returns <see cref="T:System.Int32" />.The number of headers in a collection</returns>
\r
1358 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.GetEnumerator">
\r
1359 <summary>Returns an enumerator that iterates through the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1360 <returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An enumerator for the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance.</returns>
\r
1362 <member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.IsReadOnly">
\r
1363 <summary>Gets a value indicating whether the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance is read-only.</summary>
\r
1364 <returns>Returns <see cref="T:System.Boolean" />.true if the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance is read-only; otherwise, false.</returns>
\r
1366 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ParseAdd(System.String)">
\r
1367 <summary>Parses and adds an entry to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1368 <param name="input">The entry to add.</param>
\r
1370 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Remove(`0)">
\r
1371 <summary>Removes the specified item from the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1372 <returns>Returns <see cref="T:System.Boolean" />.true if the <paramref name="item" /> was removed from the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance; otherwise, false</returns>
\r
1373 <param name="item">The item to remove.</param>
\r
1375 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.System#Collections#IEnumerable#GetEnumerator">
\r
1376 <summary>Returns an enumerator that iterates through the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1377 <returns>Returns <see cref="T:System.Collections.IEnumerator" />.An enumerator for the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance.</returns>
\r
1379 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ToString">
\r
1380 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> object. object.</summary>
\r
1381 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1383 <member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.TryParseAdd(System.String)">
\r
1384 <summary>Determines whether the input could be parsed and added to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.</summary>
\r
1385 <returns>Returns <see cref="T:System.Boolean" />.true if the <paramref name="input" /> could be parsed and added to the <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" /> instance; otherwise, false</returns>
\r
1386 <param name="input">The entry to validate.</param>
\r
1388 <member name="T:System.Net.Http.Headers.HttpRequestHeaders">
\r
1389 <summary>Represents the collection of Request Headers as defined in RFC 2616.</summary>
\r
1391 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Accept">
\r
1392 <summary>Gets the value of the Accept header for an HTTP request.</summary>
\r
1393 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept header for an HTTP request.</returns>
\r
1395 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptCharset">
\r
1396 <summary>Gets the value of the Accept-Charset header for an HTTP request.</summary>
\r
1397 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Charset header for an HTTP request.</returns>
\r
1399 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptEncoding">
\r
1400 <summary>Gets the value of the Accept-Encoding header for an HTTP request.</summary>
\r
1401 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Encoding header for an HTTP request.</returns>
\r
1403 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptLanguage">
\r
1404 <summary>Gets the value of the Accept-Language header for an HTTP request.</summary>
\r
1405 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Language header for an HTTP request.</returns>
\r
1407 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Authorization">
\r
1408 <summary>Gets or sets the value of the Authorization header for an HTTP request.</summary>
\r
1409 <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.The value of the Authorization header for an HTTP request.</returns>
\r
1411 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.CacheControl">
\r
1412 <summary>Gets or sets the value of the Cache-Control header for an HTTP request.</summary>
\r
1413 <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.The value of the Cache-Control header for an HTTP request.</returns>
\r
1415 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Connection">
\r
1416 <summary>Gets the value of the Connection header for an HTTP request.</summary>
\r
1417 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Connection header for an HTTP request.</returns>
\r
1419 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ConnectionClose">
\r
1420 <summary>Gets or sets a value that indicates if the Connection header for an HTTP request contains Close.</summary>
\r
1421 <returns>Returns <see cref="T:System.Boolean" />.true if the Connection header contains Close, otherwise false.</returns>
\r
1423 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Date">
\r
1424 <summary>Gets or sets the value of the Date header for an HTTP request.</summary>
\r
1425 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Date header for an HTTP request.</returns>
\r
1427 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Expect">
\r
1428 <summary>Gets the value of the Expect header for an HTTP request.</summary>
\r
1429 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Expect header for an HTTP request.</returns>
\r
1431 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ExpectContinue">
\r
1432 <summary>Gets or sets a value that indicates if the Expect header for an HTTP request contains Continue.</summary>
\r
1433 <returns>Returns <see cref="T:System.Boolean" />.true if the Expect header contains Continue, otherwise false.</returns>
\r
1435 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.From">
\r
1436 <summary>Gets or sets the value of the From header for an HTTP request.</summary>
\r
1437 <returns>Returns <see cref="T:System.String" />.The value of the From header for an HTTP request.</returns>
\r
1439 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Host">
\r
1440 <summary>Gets or sets the value of the Host header for an HTTP request.</summary>
\r
1441 <returns>Returns <see cref="T:System.String" />.The value of the Host header for an HTTP request.</returns>
\r
1443 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfMatch">
\r
1444 <summary>Gets the value of the If-Match header for an HTTP request.</summary>
\r
1445 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the If-Match header for an HTTP request.</returns>
\r
1447 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfModifiedSince">
\r
1448 <summary>Gets or sets the value of the If-Modified-Since header for an HTTP request.</summary>
\r
1449 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the If-Modified-Since header for an HTTP request.</returns>
\r
1451 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfNoneMatch">
\r
1452 <summary>Gets the value of the If-None-Match header for an HTTP request.</summary>
\r
1453 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.Gets the value of the If-None-Match header for an HTTP request.</returns>
\r
1455 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfRange">
\r
1456 <summary>Gets or sets the value of the If-Range header for an HTTP request.</summary>
\r
1457 <returns>Returns <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" />.The value of the If-Range header for an HTTP request.</returns>
\r
1459 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfUnmodifiedSince">
\r
1460 <summary>Gets or sets the value of the If-Unmodified-Since header for an HTTP request.</summary>
\r
1461 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the If-Unmodified-Since header for an HTTP request.</returns>
\r
1463 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.MaxForwards">
\r
1464 <summary>Gets or sets the value of the Max-Forwards header for an HTTP request.</summary>
\r
1465 <returns>Returns <see cref="T:System.Int32" />.The value of the Max-Forwards header for an HTTP request.</returns>
\r
1467 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Pragma">
\r
1468 <summary>Gets the value of the Pragma header for an HTTP request.</summary>
\r
1469 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Pragma header for an HTTP request.</returns>
\r
1471 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.ProxyAuthorization">
\r
1472 <summary>Gets or sets the value of the Proxy-Authorization header for an HTTP request.</summary>
\r
1473 <returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.The value of the Proxy-Authorization header for an HTTP request.</returns>
\r
1475 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Range">
\r
1476 <summary>Gets or sets the value of the Range header for an HTTP request.</summary>
\r
1477 <returns>Returns <see cref="T:System.Net.Http.Headers.RangeHeaderValue" />.The value of the Range header for an HTTP request.</returns>
\r
1479 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Referrer">
\r
1480 <summary>Gets or sets the value of the Referer header for an HTTP request.</summary>
\r
1481 <returns>Returns <see cref="T:System.Uri" />.The value of the Referer header for an HTTP request.</returns>
\r
1483 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TE">
\r
1484 <summary>Gets the value of the TE header for an HTTP request.</summary>
\r
1485 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the TE header for an HTTP request.</returns>
\r
1487 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Trailer">
\r
1488 <summary>Gets the value of the Trailer header for an HTTP request.</summary>
\r
1489 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Trailer header for an HTTP request.</returns>
\r
1491 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncoding">
\r
1492 <summary>Gets the value of the Transfer-Encoding header for an HTTP request.</summary>
\r
1493 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Transfer-Encoding header for an HTTP request.</returns>
\r
1495 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.TransferEncodingChunked">
\r
1496 <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP request contains chunked.</summary>
\r
1497 <returns>Returns <see cref="T:System.Boolean" />.true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
\r
1499 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Upgrade">
\r
1500 <summary>Gets the value of the Upgrade header for an HTTP request.</summary>
\r
1501 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Upgrade header for an HTTP request.</returns>
\r
1503 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.UserAgent">
\r
1504 <summary>Gets the value of the User-Agent header for an HTTP request.</summary>
\r
1505 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the User-Agent header for an HTTP request.</returns>
\r
1507 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Via">
\r
1508 <summary>Gets the value of the Via header for an HTTP request.</summary>
\r
1509 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Via header for an HTTP request.</returns>
\r
1511 <member name="P:System.Net.Http.Headers.HttpRequestHeaders.Warning">
\r
1512 <summary>Gets the value of the Warning header for an HTTP request.</summary>
\r
1513 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Warning header for an HTTP request.</returns>
\r
1515 <member name="T:System.Net.Http.Headers.HttpResponseHeaders">
\r
1516 <summary>Represents the collection of Response Headers as defined in RFC 2616.</summary>
\r
1518 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.AcceptRanges">
\r
1519 <summary>Gets the value of the Accept-Ranges header for an HTTP response.</summary>
\r
1520 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Ranges header for an HTTP response.</returns>
\r
1522 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Age">
\r
1523 <summary>Gets or sets the value of the Age header for an HTTP response.</summary>
\r
1524 <returns>Returns <see cref="T:System.TimeSpan" />.The value of the Age header for an HTTP response.</returns>
\r
1526 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.CacheControl">
\r
1527 <summary>Gets or sets the value of the Cache-Control header for an HTTP response.</summary>
\r
1528 <returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.The value of the Cache-Control header for an HTTP response.</returns>
\r
1530 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Connection">
\r
1531 <summary>Gets the value of the Connection header for an HTTP response.</summary>
\r
1532 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Connection header for an HTTP response.</returns>
\r
1534 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ConnectionClose">
\r
1535 <summary>Gets or sets a value that indicates if the Connection header for an HTTP response contains Close.</summary>
\r
1536 <returns>Returns <see cref="T:System.Boolean" />.true if the Connection header contains Close, otherwise false.</returns>
\r
1538 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Date">
\r
1539 <summary>Gets or sets the value of the Date header for an HTTP response.</summary>
\r
1540 <returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Date header for an HTTP response.</returns>
\r
1542 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ETag">
\r
1543 <summary>Gets or sets the value of the ETag header for an HTTP response.</summary>
\r
1544 <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.The value of the ETag header for an HTTP response.</returns>
\r
1546 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Location">
\r
1547 <summary>Gets or sets the value of the Location header for an HTTP response.</summary>
\r
1548 <returns>Returns <see cref="T:System.Uri" />.The value of the Location header for an HTTP response.</returns>
\r
1550 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Pragma">
\r
1551 <summary>Gets the value of the Pragma header for an HTTP response.</summary>
\r
1552 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Pragma header for an HTTP response.</returns>
\r
1554 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.ProxyAuthenticate">
\r
1555 <summary>Gets the value of the Proxy-Authenticate header for an HTTP response.</summary>
\r
1556 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Proxy-Authenticate header for an HTTP response.</returns>
\r
1558 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.RetryAfter">
\r
1559 <summary>Gets or sets the value of the Retry-After header for an HTTP response.</summary>
\r
1560 <returns>Returns <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" />.The value of the Retry-After header for an HTTP response.</returns>
\r
1562 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Server">
\r
1563 <summary>Gets the value of the Server header for an HTTP response.</summary>
\r
1564 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Server header for an HTTP response.</returns>
\r
1566 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Trailer">
\r
1567 <summary>Gets the value of the Trailer header for an HTTP response.</summary>
\r
1568 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Trailer header for an HTTP response.</returns>
\r
1570 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncoding">
\r
1571 <summary>Gets the value of the Transfer-Encoding header for an HTTP response.</summary>
\r
1572 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Transfer-Encoding header for an HTTP response.</returns>
\r
1574 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.TransferEncodingChunked">
\r
1575 <summary>Gets or sets a value that indicates if the Transfer-Encoding header for an HTTP response contains chunked.</summary>
\r
1576 <returns>Returns <see cref="T:System.Boolean" />.true if the Transfer-Encoding header contains chunked, otherwise false.</returns>
\r
1578 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Upgrade">
\r
1579 <summary>Gets the value of the Upgrade header for an HTTP response.</summary>
\r
1580 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Upgrade header for an HTTP response.</returns>
\r
1582 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Vary">
\r
1583 <summary>Gets the value of the Vary header for an HTTP response.</summary>
\r
1584 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Vary header for an HTTP response.</returns>
\r
1586 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Via">
\r
1587 <summary>Gets the value of the Via header for an HTTP response.</summary>
\r
1588 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Via header for an HTTP response.</returns>
\r
1590 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.Warning">
\r
1591 <summary>Gets the value of the Warning header for an HTTP response.</summary>
\r
1592 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Warning header for an HTTP response.</returns>
\r
1594 <member name="P:System.Net.Http.Headers.HttpResponseHeaders.WwwAuthenticate">
\r
1595 <summary>Gets the value of the WWW-Authenticate header for an HTTP response.</summary>
\r
1596 <returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the WWW-Authenticate header for an HTTP response.</returns>
\r
1598 <member name="T:System.Net.Http.Headers.MediaTypeHeaderValue">
\r
1599 <summary>Represents a media type used in a Content-Type header as defined in the RFC 2616.</summary>
\r
1601 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.Net.Http.Headers.MediaTypeHeaderValue)">
\r
1602 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> class.</summary>
\r
1603 <param name="source"> A <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object used to initialize the new instance.</param>
\r
1605 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.#ctor(System.String)">
\r
1606 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> class.</summary>
\r
1607 <param name="mediaType">The source represented as a string to initialize the new instance. </param>
\r
1609 <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.CharSet">
\r
1610 <summary>Gets or sets the character set.</summary>
\r
1611 <returns>Returns <see cref="T:System.String" />.The character set.</returns>
\r
1613 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Equals(System.Object)">
\r
1614 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
\r
1615 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1616 <param name="obj">The object to compare with the current object.</param>
\r
1618 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.GetHashCode">
\r
1619 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
\r
1620 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1622 <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.MediaType">
\r
1623 <summary>Gets or sets the media-type header value.</summary>
\r
1624 <returns>Returns <see cref="T:System.String" />.The media-type header value.</returns>
\r
1626 <member name="P:System.Net.Http.Headers.MediaTypeHeaderValue.Parameters">
\r
1627 <summary>Gets or sets the media-type header value parameters.</summary>
\r
1628 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The media-type header value parameters.</returns>
\r
1630 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.Parse(System.String)">
\r
1631 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> instance.</summary>
\r
1632 <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> instance.</returns>
\r
1633 <param name="input">A string that represents media type header value information.</param>
\r
1634 <exception cref="T:System.ArgumentNullException">
\r
1635 <paramref name="input" /> is a null reference.</exception>
\r
1636 <exception cref="T:System.FormatException">
\r
1637 <paramref name="input" /> is not valid media type header value information.</exception>
\r
1639 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.ToString">
\r
1640 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> object.</summary>
\r
1641 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1643 <member name="M:System.Net.Http.Headers.MediaTypeHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeHeaderValue@)">
\r
1644 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> information.</summary>
\r
1645 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> information; otherwise, false.</returns>
\r
1646 <param name="input">The string to validate.</param>
\r
1647 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> version of the string.</param>
\r
1649 <member name="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue">
\r
1650 <summary>Represents a media type with an additional quality factor used in a Content-Type header.</summary>
\r
1652 <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String)">
\r
1653 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> class.</summary>
\r
1654 <param name="mediaType">A <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> represented as string to initialize the new instance. </param>
\r
1656 <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.#ctor(System.String,System.Double)">
\r
1657 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> class.</summary>
\r
1658 <param name="mediaType">A <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> represented as string to initialize the new instance.</param>
\r
1659 <param name="quality">The quality associated with this header value.</param>
\r
1661 <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse(System.String)">
\r
1662 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> instance.</summary>
\r
1663 <returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> instance.</returns>
\r
1664 <param name="input">A string that represents media type with quality header value information.</param>
\r
1665 <exception cref="T:System.ArgumentNullException">
\r
1666 <paramref name="input" /> is a null reference.</exception>
\r
1667 <exception cref="T:System.FormatException">
\r
1668 <paramref name="input" /> is not valid media type with quality header value information.</exception>
\r
1670 <member name="P:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Quality">
\r
1671 <summary>Get or set the quality value for the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" />.</summary>
\r
1672 <returns>Returns <see cref="T:System.Double" />.The quality value for the <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> object.</returns>
\r
1674 <member name="M:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.MediaTypeWithQualityHeaderValue@)">
\r
1675 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> information.</summary>
\r
1676 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> information; otherwise, false.</returns>
\r
1677 <param name="input">The string to validate.</param>
\r
1678 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.MediaTypeWithQualityHeaderValue" /> version of the string.</param>
\r
1680 <member name="T:System.Net.Http.Headers.NameValueHeaderValue">
\r
1681 <summary>Represents a name/value pair used in various headers as defined in RFC 2616.</summary>
\r
1683 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.Net.Http.Headers.NameValueHeaderValue)">
\r
1684 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
\r
1685 <param name="source">A <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object used to initialize the new instance.</param>
\r
1687 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String)">
\r
1688 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
\r
1689 <param name="name">The header name.</param>
\r
1691 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.#ctor(System.String,System.String)">
\r
1692 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> class.</summary>
\r
1693 <param name="name">The header name.</param>
\r
1694 <param name="value">The header value.</param>
\r
1696 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Equals(System.Object)">
\r
1697 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
\r
1698 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1699 <param name="obj">The object to compare with the current object.</param>
\r
1701 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.GetHashCode">
\r
1702 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
\r
1703 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1705 <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Name">
\r
1706 <summary>Gets the header name.</summary>
\r
1707 <returns>Returns <see cref="T:System.String" />.The header name.</returns>
\r
1709 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.Parse(System.String)">
\r
1710 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> instance.</summary>
\r
1711 <returns>Returns <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" />.An <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> instance.</returns>
\r
1712 <param name="input">A string that represents name value header value information.</param>
\r
1713 <exception cref="T:System.ArgumentNullException">
\r
1714 <paramref name="input" /> is a null reference.</exception>
\r
1715 <exception cref="T:System.FormatException">
\r
1716 <paramref name="input" /> is not valid name value header value information.</exception>
\r
1718 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.ToString">
\r
1719 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> object.</summary>
\r
1720 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1722 <member name="M:System.Net.Http.Headers.NameValueHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueHeaderValue@)">
\r
1723 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> information.</summary>
\r
1724 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> information; otherwise, false.</returns>
\r
1725 <param name="input">The string to validate.</param>
\r
1726 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueHeaderValue" /> version of the string.</param>
\r
1728 <member name="P:System.Net.Http.Headers.NameValueHeaderValue.Value">
\r
1729 <summary>Gets the header value.</summary>
\r
1730 <returns>Returns <see cref="T:System.String" />.The header value.</returns>
\r
1732 <member name="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue">
\r
1733 <summary>Represents a name/value pair with parameters used in various headers as defined in RFC 2616.</summary>
\r
1735 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.Net.Http.Headers.NameValueWithParametersHeaderValue)">
\r
1736 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
\r
1737 <param name="source">A <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object used to initialize the new instance.</param>
\r
1739 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String)">
\r
1740 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
\r
1741 <param name="name">The header name.</param>
\r
1743 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.#ctor(System.String,System.String)">
\r
1744 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> class.</summary>
\r
1745 <param name="name">The header name.</param>
\r
1746 <param name="value">The header value.</param>
\r
1748 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Equals(System.Object)">
\r
1749 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
\r
1750 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1751 <param name="obj">The object to compare with the current object.</param>
\r
1753 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.GetHashCode">
\r
1754 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
\r
1755 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1757 <member name="P:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parameters">
\r
1758 <summary>Gets the parameters from the <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
\r
1759 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection containing the parameters.</returns>
\r
1761 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.Parse(System.String)">
\r
1762 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> instance.</summary>
\r
1763 <returns>Returns <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" />.An <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> instance.</returns>
\r
1764 <param name="input">A string that represents name value with parameter header value information.</param>
\r
1765 <exception cref="T:System.ArgumentNullException">
\r
1766 <paramref name="input" /> is a null reference.</exception>
\r
1767 <exception cref="T:System.FormatException">
\r
1768 <paramref name="input" /> is not valid name value with parameter header value information.</exception>
\r
1770 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.ToString">
\r
1771 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> object.</summary>
\r
1772 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1774 <member name="M:System.Net.Http.Headers.NameValueWithParametersHeaderValue.TryParse(System.String,System.Net.Http.Headers.NameValueWithParametersHeaderValue@)">
\r
1775 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> information.</summary>
\r
1776 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> information; otherwise, false.</returns>
\r
1777 <param name="input">The string to validate.</param>
\r
1778 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.NameValueWithParametersHeaderValue" /> version of the string.</param>
\r
1780 <member name="T:System.Net.Http.Headers.ProductHeaderValue">
\r
1781 <summary>Represents a product token value in a User-Agent header.</summary>
\r
1783 <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String)">
\r
1784 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> class.</summary>
\r
1785 <param name="name">The product name.</param>
\r
1787 <member name="M:System.Net.Http.Headers.ProductHeaderValue.#ctor(System.String,System.String)">
\r
1788 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> class.</summary>
\r
1789 <param name="name">The product name value.</param>
\r
1790 <param name="version">The product version value.</param>
\r
1792 <member name="M:System.Net.Http.Headers.ProductHeaderValue.Equals(System.Object)">
\r
1793 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
\r
1794 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1795 <param name="obj">The object to compare with the current object.</param>
\r
1797 <member name="M:System.Net.Http.Headers.ProductHeaderValue.GetHashCode">
\r
1798 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
\r
1799 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1801 <member name="P:System.Net.Http.Headers.ProductHeaderValue.Name">
\r
1802 <summary>Gets the name of the product token.</summary>
\r
1803 <returns>Returns <see cref="T:System.String" />.The name of the product token.</returns>
\r
1805 <member name="M:System.Net.Http.Headers.ProductHeaderValue.Parse(System.String)">
\r
1806 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> instance.</summary>
\r
1807 <returns>Returns <see cref="T:System.Net.Http.Headers.ProductHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> instance.</returns>
\r
1808 <param name="input">A string that represents product header value information.</param>
\r
1810 <member name="M:System.Net.Http.Headers.ProductHeaderValue.ToString">
\r
1811 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> object.</summary>
\r
1812 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1814 <member name="M:System.Net.Http.Headers.ProductHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductHeaderValue@)">
\r
1815 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> information.</summary>
\r
1816 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> information; otherwise, false.</returns>
\r
1817 <param name="input">The string to validate.</param>
\r
1818 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductHeaderValue" /> version of the string.</param>
\r
1820 <member name="P:System.Net.Http.Headers.ProductHeaderValue.Version">
\r
1821 <summary>Gets the version of the product token.</summary>
\r
1822 <returns>Returns <see cref="T:System.String" />.The version of the product token. </returns>
\r
1824 <member name="T:System.Net.Http.Headers.ProductInfoHeaderValue">
\r
1825 <summary>Represents a value which can either be a product or a comment in a User-Agent header.</summary>
\r
1827 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.Net.Http.Headers.ProductHeaderValue)">
\r
1828 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
\r
1829 <param name="product">A <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object used to initialize the new instance.</param>
\r
1831 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String)">
\r
1832 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
\r
1833 <param name="comment">A comment value.</param>
\r
1835 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.#ctor(System.String,System.String)">
\r
1836 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> class.</summary>
\r
1837 <param name="productName">The product name value.</param>
\r
1838 <param name="productVersion">The product version value.</param>
\r
1840 <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Comment">
\r
1841 <summary>Gets the comment from the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
\r
1842 <returns>Returns <see cref="T:System.String" />.The comment value this <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" />.</returns>
\r
1844 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Equals(System.Object)">
\r
1845 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
\r
1846 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1847 <param name="obj">The object to compare with the current object.</param>
\r
1849 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.GetHashCode">
\r
1850 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
\r
1851 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1853 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.Parse(System.String)">
\r
1854 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> instance.</summary>
\r
1855 <returns>Returns <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> instance.</returns>
\r
1856 <param name="input">A string that represents product info header value information.</param>
\r
1857 <exception cref="T:System.ArgumentNullException">
\r
1858 <paramref name="input" /> is a null reference.</exception>
\r
1859 <exception cref="T:System.FormatException">
\r
1860 <paramref name="input" /> is not valid product info header value information.</exception>
\r
1862 <member name="P:System.Net.Http.Headers.ProductInfoHeaderValue.Product">
\r
1863 <summary>Gets the product from the <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
\r
1864 <returns>Returns <see cref="T:System.Net.Http.Headers.ProductHeaderValue" />.The product value from this <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" />.</returns>
\r
1866 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.ToString">
\r
1867 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> object.</summary>
\r
1868 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1870 <member name="M:System.Net.Http.Headers.ProductInfoHeaderValue.TryParse(System.String,System.Net.Http.Headers.ProductInfoHeaderValue@)">
\r
1871 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> information.</summary>
\r
1872 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> information; otherwise, false.</returns>
\r
1873 <param name="input">The string to validate.</param>
\r
1874 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ProductInfoHeaderValue" /> version of the string.</param>
\r
1876 <member name="T:System.Net.Http.Headers.RangeConditionHeaderValue">
\r
1877 <summary>Represents an If-Range header value which can either be a date/time or an entity-tag value.</summary>
\r
1879 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.DateTimeOffset)">
\r
1880 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
\r
1881 <param name="date">A date value used to initialize the new instance.</param>
\r
1883 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.Net.Http.Headers.EntityTagHeaderValue)">
\r
1884 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
\r
1885 <param name="entityTag">An <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object used to initialize the new instance.</param>
\r
1887 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.#ctor(System.String)">
\r
1888 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> class.</summary>
\r
1889 <param name="entityTag">An entity tag represented as a string used to initialize the new instance.</param>
\r
1891 <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.Date">
\r
1892 <summary>Gets the date from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
\r
1893 <returns>Returns <see cref="T:System.DateTimeOffset" />.The date from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</returns>
\r
1895 <member name="P:System.Net.Http.Headers.RangeConditionHeaderValue.EntityTag">
\r
1896 <summary>Gets the entity tag from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
\r
1897 <returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.The entity tag from the <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</returns>
\r
1899 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Equals(System.Object)">
\r
1900 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
\r
1901 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1902 <param name="obj">The object to compare with the current object.</param>
\r
1904 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.GetHashCode">
\r
1905 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
\r
1906 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1908 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.Parse(System.String)">
\r
1909 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> instance.</summary>
\r
1910 <returns>Returns <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> instance.</returns>
\r
1911 <param name="input">A string that represents range condition header value information.</param>
\r
1912 <exception cref="T:System.ArgumentNullException">
\r
1913 <paramref name="input" /> is a null reference.</exception>
\r
1914 <exception cref="T:System.FormatException">
\r
1915 <paramref name="input" /> is not valid range Condition header value information.</exception>
\r
1917 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.ToString">
\r
1918 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> object.</summary>
\r
1919 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1921 <member name="M:System.Net.Http.Headers.RangeConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeConditionHeaderValue@)">
\r
1922 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> information.</summary>
\r
1923 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> information; otherwise, false.</returns>
\r
1924 <param name="input">The string to validate.</param>
\r
1925 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeConditionHeaderValue" /> version of the string.</param>
\r
1927 <member name="T:System.Net.Http.Headers.RangeHeaderValue">
\r
1928 <summary>Represents a Range header value.</summary>
\r
1930 <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor">
\r
1931 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> class.</summary>
\r
1933 <member name="M:System.Net.Http.Headers.RangeHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
\r
1934 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> class with a byte range.</summary>
\r
1935 <param name="from">The position at which to start sending data.</param>
\r
1936 <param name="to">The position at which to stop sending data.</param>
\r
1937 <exception cref="T:System.ArgumentOutOfRangeException">
\r
1938 <paramref name="from" /> is greater than <paramref name="to" />-or- <paramref name="from" /> or <paramref name="to" /> is less than 0. </exception>
\r
1940 <member name="M:System.Net.Http.Headers.RangeHeaderValue.Equals(System.Object)">
\r
1941 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
\r
1942 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1943 <param name="obj">The object to compare with the current object.</param>
\r
1945 <member name="M:System.Net.Http.Headers.RangeHeaderValue.GetHashCode">
\r
1946 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
\r
1947 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1949 <member name="M:System.Net.Http.Headers.RangeHeaderValue.Parse(System.String)">
\r
1950 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> instance.</summary>
\r
1951 <returns>Returns <see cref="T:System.Net.Http.Headers.RangeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> instance.</returns>
\r
1952 <param name="input">A string that represents range header value information.</param>
\r
1953 <exception cref="T:System.ArgumentNullException">
\r
1954 <paramref name="input" /> is a null reference.</exception>
\r
1955 <exception cref="T:System.FormatException">
\r
1956 <paramref name="input" /> is not valid range header value information.</exception>
\r
1958 <member name="P:System.Net.Http.Headers.RangeHeaderValue.Ranges">
\r
1959 <summary>Gets the ranges specified from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
\r
1960 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The ranges from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</returns>
\r
1962 <member name="M:System.Net.Http.Headers.RangeHeaderValue.ToString">
\r
1963 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
\r
1964 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
1966 <member name="M:System.Net.Http.Headers.RangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.RangeHeaderValue@)">
\r
1967 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> information.</summary>
\r
1968 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information; otherwise, false.</returns>
\r
1969 <param name="input">he string to validate.</param>
\r
1970 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> version of the string.</param>
\r
1972 <member name="P:System.Net.Http.Headers.RangeHeaderValue.Unit">
\r
1973 <summary>Gets the unit from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</summary>
\r
1974 <returns>Returns <see cref="T:System.String" />.The unit from the <see cref="T:System.Net.Http.Headers.RangeHeaderValue" /> object.</returns>
\r
1976 <member name="T:System.Net.Http.Headers.RangeItemHeaderValue">
\r
1977 <summary>Represents a byte range in a Range header value.</summary>
\r
1979 <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.#ctor(System.Nullable{System.Int64},System.Nullable{System.Int64})">
\r
1980 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> class.</summary>
\r
1981 <param name="from">The position at which to start sending data.</param>
\r
1982 <param name="to">The position at which to stop sending data.</param>
\r
1983 <exception cref="T:System.ArgumentOutOfRangeException">
\r
1984 <paramref name="from" /> is greater than <paramref name="to" />-or- <paramref name="from" /> or <paramref name="to" /> is less than 0. </exception>
\r
1986 <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.Equals(System.Object)">
\r
1987 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
\r
1988 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
1989 <param name="obj">The object to compare with the current object.</param>
\r
1991 <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.From">
\r
1992 <summary>Gets the position at which to start sending data.</summary>
\r
1993 <returns>Returns <see cref="T:System.Int64" />.The position at which to start sending data.</returns>
\r
1995 <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.GetHashCode">
\r
1996 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
\r
1997 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
1999 <member name="P:System.Net.Http.Headers.RangeItemHeaderValue.To">
\r
2000 <summary>Gets the position at which to stop sending data. </summary>
\r
2001 <returns>Returns <see cref="T:System.Int64" />.The position at which to stop sending data. </returns>
\r
2003 <member name="M:System.Net.Http.Headers.RangeItemHeaderValue.ToString">
\r
2004 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RangeItemHeaderValue" /> object.</summary>
\r
2005 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2007 <member name="T:System.Net.Http.Headers.RetryConditionHeaderValue">
\r
2008 <summary>Represents a Retry-After header value which can either be a date/time or a timespan value.</summary>
\r
2010 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.DateTimeOffset)">
\r
2011 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> class.</summary>
\r
2012 <param name="date">The date and time offset used to initialize the new instance.</param>
\r
2014 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.#ctor(System.TimeSpan)">
\r
2015 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> class.</summary>
\r
2016 <param name="delta">The delta, in seconds, used to initialize the new instance.</param>
\r
2018 <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Date">
\r
2019 <summary>Gets the date and time offset from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
\r
2020 <returns>Returns <see cref="T:System.DateTimeOffset" />.The date and time offset from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</returns>
\r
2022 <member name="P:System.Net.Http.Headers.RetryConditionHeaderValue.Delta">
\r
2023 <summary>Gets the delta in seconds from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
\r
2024 <returns>Returns <see cref="T:System.TimeSpan" />.The delta in seconds from the <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</returns>
\r
2026 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Equals(System.Object)">
\r
2027 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
\r
2028 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
2029 <param name="obj">The object to compare with the current object.</param>
\r
2031 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.GetHashCode">
\r
2032 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
\r
2033 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
2035 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.Parse(System.String)">
\r
2036 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> instance.</summary>
\r
2037 <returns>Returns <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> instance.</returns>
\r
2038 <param name="input">A string that represents retry condition header value information.</param>
\r
2039 <exception cref="T:System.ArgumentNullException">
\r
2040 <paramref name="input" /> is a null reference.</exception>
\r
2041 <exception cref="T:System.FormatException">
\r
2042 <paramref name="input" /> is not valid retry condition header value information.</exception>
\r
2044 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.ToString">
\r
2045 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> object.</summary>
\r
2046 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2048 <member name="M:System.Net.Http.Headers.RetryConditionHeaderValue.TryParse(System.String,System.Net.Http.Headers.RetryConditionHeaderValue@)">
\r
2049 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> information.</summary>
\r
2050 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> information; otherwise, false.</returns>
\r
2051 <param name="input">The string to validate.</param>
\r
2052 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.RetryConditionHeaderValue" /> version of the string.</param>
\r
2054 <member name="T:System.Net.Http.Headers.StringWithQualityHeaderValue">
\r
2055 <summary>Represents a string header value with an optional quality.</summary>
\r
2057 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String)">
\r
2058 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> class.</summary>
\r
2059 <param name="value">The string used to initialize the new instance.</param>
\r
2061 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.#ctor(System.String,System.Double)">
\r
2062 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> class.</summary>
\r
2063 <param name="value">A string used to initialize the new instance.</param>
\r
2064 <param name="quality">A quality factor used to initialize the new instance.</param>
\r
2066 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Equals(System.Object)">
\r
2067 <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
\r
2068 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
2069 <param name="obj">The object to compare with the current object.</param>
\r
2071 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.GetHashCode">
\r
2072 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
\r
2073 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
2075 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.Parse(System.String)">
\r
2076 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> instance.</summary>
\r
2077 <returns>Returns <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
\r
2078 <param name="input">A string that represents quality header value information.</param>
\r
2079 <exception cref="T:System.ArgumentNullException">
\r
2080 <paramref name="input" /> is a null reference.</exception>
\r
2081 <exception cref="T:System.FormatException">
\r
2082 <paramref name="input" /> is not valid string with quality header value information.</exception>
\r
2084 <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Quality">
\r
2085 <summary>Gets the quality factor from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
\r
2086 <returns>Returns <see cref="T:System.Double" />.The quality factor from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</returns>
\r
2088 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.ToString">
\r
2089 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
\r
2090 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2092 <member name="M:System.Net.Http.Headers.StringWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.StringWithQualityHeaderValue@)">
\r
2093 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> information.</summary>
\r
2094 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> information; otherwise, false.</returns>
\r
2095 <param name="input">The string to validate.</param>
\r
2096 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> version of the string.</param>
\r
2098 <member name="P:System.Net.Http.Headers.StringWithQualityHeaderValue.Value">
\r
2099 <summary>Gets the string value from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</summary>
\r
2100 <returns>Returns <see cref="T:System.String" />.The string value from the <see cref="T:System.Net.Http.Headers.StringWithQualityHeaderValue" /> object.</returns>
\r
2102 <member name="T:System.Net.Http.Headers.TransferCodingHeaderValue">
\r
2103 <summary>Represents an accept-encoding header value.</summary>
\r
2105 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.Net.Http.Headers.TransferCodingHeaderValue)">
\r
2106 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> class.</summary>
\r
2107 <param name="source">A <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object used to initialize the new instance. </param>
\r
2109 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.#ctor(System.String)">
\r
2110 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> class.</summary>
\r
2111 <param name="value">A string used to initialize the new instance.</param>
\r
2113 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Equals(System.Object)">
\r
2114 <summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
\r
2115 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
2116 <param name="obj">The object to compare with the current object.</param>
\r
2118 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.GetHashCode">
\r
2119 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
\r
2120 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
2122 <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Parameters">
\r
2123 <summary>Gets the transfer-coding parameters.</summary>
\r
2124 <returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The transfer-coding parameters.</returns>
\r
2126 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.Parse(System.String)">
\r
2127 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> instance.</summary>
\r
2128 <returns>Returns <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns>
\r
2129 <param name="input">A string that represents transfer-coding header value information.</param>
\r
2130 <exception cref="T:System.ArgumentNullException">
\r
2131 <paramref name="input" /> is a null reference.</exception>
\r
2132 <exception cref="T:System.FormatException">
\r
2133 <paramref name="input" /> is not valid transfer-coding header value information.</exception>
\r
2135 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.ToString">
\r
2136 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> object.</summary>
\r
2137 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2139 <member name="M:System.Net.Http.Headers.TransferCodingHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingHeaderValue@)">
\r
2140 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> information.</summary>
\r
2141 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> information; otherwise, false.</returns>
\r
2142 <param name="input">The string to validate.</param>
\r
2143 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingHeaderValue" /> version of the string.</param>
\r
2145 <member name="P:System.Net.Http.Headers.TransferCodingHeaderValue.Value">
\r
2146 <summary>Gets the transfer-coding value.</summary>
\r
2147 <returns>Returns <see cref="T:System.String" />.The transfer-coding value.</returns>
\r
2149 <member name="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue">
\r
2150 <summary>Represents an Accept-Encoding header value.with optional quality factor.</summary>
\r
2152 <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String)">
\r
2153 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> class.</summary>
\r
2154 <param name="value">A string used to initialize the new instance.</param>
\r
2156 <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.#ctor(System.String,System.Double)">
\r
2157 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> class.</summary>
\r
2158 <param name="value">A string used to initialize the new instance.</param>
\r
2159 <param name="quality">A value for the quality factor.</param>
\r
2161 <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Parse(System.String)">
\r
2162 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> instance.</summary>
\r
2163 <returns>Returns <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" />.An <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> instance.</returns>
\r
2164 <param name="input">A string that represents transfer-coding value information.</param>
\r
2165 <exception cref="T:System.ArgumentNullException">
\r
2166 <paramref name="input" /> is a null reference.</exception>
\r
2167 <exception cref="T:System.FormatException">
\r
2168 <paramref name="input" /> is not valid transfer-coding with quality header value information.</exception>
\r
2170 <member name="P:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.Quality">
\r
2171 <summary>Gets the quality factor from the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" />.</summary>
\r
2172 <returns>Returns <see cref="T:System.Double" />.The quality factor from the <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" />.</returns>
\r
2174 <member name="M:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue.TryParse(System.String,System.Net.Http.Headers.TransferCodingWithQualityHeaderValue@)">
\r
2175 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> information.</summary>
\r
2176 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> information; otherwise, false.</returns>
\r
2177 <param name="input">The string to validate.</param>
\r
2178 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.TransferCodingWithQualityHeaderValue" /> version of the string.</param>
\r
2180 <member name="T:System.Net.Http.Headers.ViaHeaderValue">
\r
2181 <summary>Represents the value of a Via header.</summary>
\r
2183 <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String)">
\r
2184 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
\r
2185 <param name="protocolVersion">The protocol version of the received protocol.</param>
\r
2186 <param name="receivedBy">The host and port that the request or response was received by.</param>
\r
2188 <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String)">
\r
2189 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
\r
2190 <param name="protocolVersion">The protocol version of the received protocol.</param>
\r
2191 <param name="receivedBy">The host and port that the request or response was received by.</param>
\r
2192 <param name="protocolName">The protocol name of the received protocol.</param>
\r
2194 <member name="M:System.Net.Http.Headers.ViaHeaderValue.#ctor(System.String,System.String,System.String,System.String)">
\r
2195 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> class.</summary>
\r
2196 <param name="protocolVersion">The protocol version of the received protocol.</param>
\r
2197 <param name="receivedBy">The host and port that the request or response was received by.</param>
\r
2198 <param name="protocolName">The protocol name of the received protocol.</param>
\r
2199 <param name="comment">The comment field used to identify the software of the recipient proxy or gateway.</param>
\r
2201 <member name="P:System.Net.Http.Headers.ViaHeaderValue.Comment">
\r
2202 <summary>Gets the comment field used to identify the software of the recipient proxy or gateway.</summary>
\r
2203 <returns>Returns <see cref="T:System.String" />.The comment field used to identify the software of the recipient proxy or gateway.</returns>
\r
2205 <member name="M:System.Net.Http.Headers.ViaHeaderValue.Equals(System.Object)">
\r
2206 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue" />object.</summary>
\r
2207 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
2208 <param name="obj">The object to compare with the current object.</param>
\r
2210 <member name="M:System.Net.Http.Headers.ViaHeaderValue.GetHashCode">
\r
2211 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> object.</summary>
\r
2212 <returns>Returns <see cref="T:System.Int32" />.Returns a hash code for the current object.</returns>
\r
2214 <member name="M:System.Net.Http.Headers.ViaHeaderValue.Parse(System.String)">
\r
2215 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> instance.</summary>
\r
2216 <returns>Returns <see cref="T:System.Net.Http.Headers.ViaHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> instance.</returns>
\r
2217 <param name="input">A string that represents via header value information.</param>
\r
2218 <exception cref="T:System.ArgumentNullException">
\r
2219 <paramref name="input" /> is a null reference.</exception>
\r
2220 <exception cref="T:System.FormatException">
\r
2221 <paramref name="input" /> is not valid via header value information.</exception>
\r
2223 <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolName">
\r
2224 <summary>Gets the protocol name of the received protocol.</summary>
\r
2225 <returns>Returns <see cref="T:System.String" />.The protocol name.</returns>
\r
2227 <member name="P:System.Net.Http.Headers.ViaHeaderValue.ProtocolVersion">
\r
2228 <summary>Gets the protocol version of the received protocol.</summary>
\r
2229 <returns>Returns <see cref="T:System.String" />.The protocol version.</returns>
\r
2231 <member name="P:System.Net.Http.Headers.ViaHeaderValue.ReceivedBy">
\r
2232 <summary>Gets the host and port that the request or response was received by.</summary>
\r
2233 <returns>Returns <see cref="T:System.String" />.The host and port that the request or response was received by.</returns>
\r
2235 <member name="M:System.Net.Http.Headers.ViaHeaderValue.ToString">
\r
2236 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> object.</summary>
\r
2237 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2239 <member name="M:System.Net.Http.Headers.ViaHeaderValue.TryParse(System.String,System.Net.Http.Headers.ViaHeaderValue@)">
\r
2240 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> information.</summary>
\r
2241 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> information; otherwise, false.</returns>
\r
2242 <param name="input">The string to validate.</param>
\r
2243 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ViaHeaderValue" /> version of the string.</param>
\r
2245 <member name="T:System.Net.Http.Headers.WarningHeaderValue">
\r
2246 <summary>Represents a warning value used by the Warning header.</summary>
\r
2248 <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String)">
\r
2249 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> class.</summary>
\r
2250 <param name="code">The specific warning code.</param>
\r
2251 <param name="agent">The host that attached the warning.</param>
\r
2252 <param name="text">A quoted-string containing the warning text.</param>
\r
2254 <member name="M:System.Net.Http.Headers.WarningHeaderValue.#ctor(System.Int32,System.String,System.String,System.DateTimeOffset)">
\r
2255 <summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> class.</summary>
\r
2256 <param name="code">The specific warning code.</param>
\r
2257 <param name="agent">The host that attached the warning.</param>
\r
2258 <param name="text">A quoted-string containing the warning text.</param>
\r
2259 <param name="date">The date/time stamp of the warning.</param>
\r
2261 <member name="P:System.Net.Http.Headers.WarningHeaderValue.Agent">
\r
2262 <summary>Gets the host that attached the warning.</summary>
\r
2263 <returns>Returns <see cref="T:System.String" />.The host that attached the warning.</returns>
\r
2265 <member name="P:System.Net.Http.Headers.WarningHeaderValue.Code">
\r
2266 <summary>Gets the specific warning code.</summary>
\r
2267 <returns>Returns <see cref="T:System.Int32" />.The specific warning code.</returns>
\r
2269 <member name="P:System.Net.Http.Headers.WarningHeaderValue.Date">
\r
2270 <summary>Gets the date/time stamp of the warning.</summary>
\r
2271 <returns>Returns <see cref="T:System.DateTimeOffset" />.The date/time stamp of the warning.</returns>
\r
2273 <member name="M:System.Net.Http.Headers.WarningHeaderValue.Equals(System.Object)">
\r
2274 <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
\r
2275 <returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns>
\r
2276 <param name="obj">The object to compare with the current object.</param>
\r
2278 <member name="M:System.Net.Http.Headers.WarningHeaderValue.GetHashCode">
\r
2279 <summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
\r
2280 <returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns>
\r
2282 <member name="M:System.Net.Http.Headers.WarningHeaderValue.Parse(System.String)">
\r
2283 <summary>Converts a string to an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> instance.</summary>
\r
2284 <returns>Returns an <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> instance.</returns>
\r
2285 <param name="input">A string that represents authentication header value information.</param>
\r
2286 <exception cref="T:System.ArgumentNullException">
\r
2287 <paramref name="input" /> is a null reference.</exception>
\r
2288 <exception cref="T:System.FormatException">
\r
2289 <paramref name="input" /> is not valid authentication header value information.</exception>
\r
2291 <member name="P:System.Net.Http.Headers.WarningHeaderValue.Text">
\r
2292 <summary>Gets a quoted-string containing the warning text.</summary>
\r
2293 <returns>Returns <see cref="T:System.String" />.A quoted-string containing the warning text.</returns>
\r
2295 <member name="M:System.Net.Http.Headers.WarningHeaderValue.ToString">
\r
2296 <summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> object.</summary>
\r
2297 <returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns>
\r
2299 <member name="M:System.Net.Http.Headers.WarningHeaderValue.TryParse(System.String,System.Net.Http.Headers.WarningHeaderValue@)">
\r
2300 <summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> information.</summary>
\r
2301 <returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> information; otherwise, false.</returns>
\r
2302 <param name="input">The string to validate.</param>
\r
2303 <param name="parsedValue">The <see cref="T:System.Net.Http.Headers.WarningHeaderValue" /> version of the string.</param>
\r