doevisualizations
Version:
Data Visualization Library based on RequireJS and D3.js (v4+)
515 lines • 193 kB
text/xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Net.Http.Formatting</name>
</assembly>
<members>
<member name="T:System.Net.Http.ByteRangeStreamContent">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. The <see cref="T:System.Net.Http.ByteRangeStreamContent" /> supports one or more byte ranges regardless of whether the ranges are consecutive or not. If there is only one range then a single partial response body containing a Content-Range header is generated. If there are more than one ranges then a multipart/byteranges response is generated where each body part contains a range indicated by the associated Content-Range header field. </summary>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Net.Http.Headers.MediaTypeHeaderValue,System.Int32)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
<param name="bufferSize">The buffer size used when copying the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.String)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.String,System.Int32)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
<param name="bufferSize">The buffer size used when copying the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.Dispose(System.Boolean)">
<summary>Releases the resources used by the current instance of the <see cref="T:System.Net.Http.ByteRangeStreamContent" /> class.</summary>
<param name="disposing">true to release managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary>Asynchronously serialize and write the byte range to an HTTP content stream.</summary>
<returns>The task object representing the asynchronous operation.</returns>
<param name="stream">The target stream.</param>
<param name="context">Information about the transport.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.TryComputeLength(System.Int64@)">
<summary>Determines whether a byte array has a valid length in bytes.</summary>
<returns>true if length is a valid length; otherwise, false.</returns>
<param name="length">The length in bytes of the byte array.</param>
</member>
<member name="T:System.Net.Http.HttpClientExtensions">
<summary> Extension methods that aid in making formatted requests using <see cref="T:System.Net.Http.HttpClient" />. </summary>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="T:System.Net.Http.HttpClientFactory">
<summary>Represents the factory for creating new instance of <see cref="T:System.Net.Http.HttpClient" />.</summary>
</member>
<member name="M:System.Net.Http.HttpClientFactory.Create(System.Net.Http.DelegatingHandler[])">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" />.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" />.</returns>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="M:System.Net.Http.HttpClientFactory.Create(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" />.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" />.</returns>
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="M:System.Net.Http.HttpClientFactory.CreatePipeline(System.Net.Http.HttpMessageHandler,System.Collections.Generic.IEnumerable{System.Net.Http.DelegatingHandler})">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" /> which should be pipelined.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" /> which should be pipelined.</returns>
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="T:System.Net.Http.HttpContentExtensions">
<summary>Specifies extension methods to allow strongly typed objects to be read from HttpContent instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent)">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTyepFormatter instances to use.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger)">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type)">
<summary> Returns a Task that will yield an object of the specified type from the content instance. </summary>
<returns>A Task that will yield an object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
<summary> Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger)">
<summary> Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="T:System.Net.Http.HttpContentFormDataExtensions">
<summary>Extension methods to read HTML form URL-encoded datafrom <see cref="T:System.Net.Http.HttpContent" /> instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.IsFormData(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTML form URL-encoded data.</summary>
<returns>true if the specified content is HTML form URL-encoded data; otherwise, false.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.ReadAsFormDataAsync(System.Net.Http.HttpContent)">
<summary>Asynchronously reads HTML form URL-encoded from an <see cref="T:System.Net.Http.HttpContent" /> instance and stores the results in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.ReadAsFormDataAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Asynchronously reads HTML form URL-encoded from an <see cref="T:System.Net.Http.HttpContent" /> instance and stores the results in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="content">The content.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="T:System.Net.Http.HttpContentMessageExtensions">
<summary>Provides extension methods to read <see cref="T:System.Net.Http.HttpRequestMessage" /> and <see cref="T:System.Net.Http.HttpResponseMessage" /> entities from <see cref="T:System.Net.Http.HttpContent" /> instances. </summary>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.IsHttpRequestMessageContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTTP request message content.</summary>
<returns>true if the specified content is HTTP message content; otherwise, false.</returns>
<param name="content">The content to check.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.IsHttpResponseMessageContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTTP response message content.</summary>
<returns>true if the specified content is HTTP message content; otherwise, false.</returns>
<param name="content">The content to check.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
<param name="bufferSize">The size of the buffer.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />.</summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
<param name="bufferSize">The size of the buffer.</param>
<param name="maxHeaderSize">The maximum length of the HTTP header.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="bufferSize">The size of the buffer.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />.</summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="bufferSize">The size of the buffer.</param>
<param name="maxHeaderSize">The maximum length of the HTTP header.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)"></member>
<member name="T:System.Net.Http.HttpContentMultipartExtensions">
<summary>Extension methods to read MIME multipart entities from <see cref="T:System.Net.Http.HttpContent" /> instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.IsMimeMultipartContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is MIME multipart content.</summary>
<returns>true if the specified content is MIME multipart content; otherwise, false.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.IsMimeMultipartContent(System.Net.Http.HttpContent,System.String)">
<summary>Determines whether the specified content is MIME multipart content with the specified subtype.</summary>
<returns>true if the specified content is MIME multipart content with the specified subtype; otherwise, false.</returns>
<param name="content">The content.</param>
<param name="subtype">The MIME multipart subtype to match.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync(System.Net.Http.HttpContent)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
<typeparam name="T">The type of the MIME multipart.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0,System.Int32)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providin