<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Net.Http</name>
</assembly>
<members>
<member name="T:System.Net.Http.ByteArrayContent">
<summary>Provides HTTP content based on a byte array.</summary>
</member>
<member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
</member>
<member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[],System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary>
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param>
<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>
<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>
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception>
<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>
</member>
<member name="M:System.Net.Http.ByteArrayContent.CreateContentReadStreamAsync">
<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>
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns>
</member>
<member name="M:System.Net.Http.ByteArrayContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary>Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.</summary>
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />. The task object representing the asynchronous operation.</returns>
<param name="stream">The target stream.</param>
<param name="context">Information about the transport, like channel binding token. This parameter may be null.</param>
</member>
<member name="M:System.Net.Http.ByteArrayContent.TryComputeLength(System.Int64@)">
<summary>Determines whether a byte array has a valid length in bytes.</summary>
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="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.ClientCertificateOption">
<summary>Specifies how client certificates are provided.</summary>
</member>
<member name="F:System.Net.Http.ClientCertificateOption.Manual">
<summary>The application manually provides the client certificates to the <see cref="T:System.Net.Http.WebRequestHandler" />. This value is the default. </summary>
</member>
<member name="F:System.Net.Http.ClientCertificateOption.Automatic">
<summary>The <see cref="T:System.Net.Http.HttpClientHandler" /> will attempt to provide all available client certificates automatically.</summary>
</member>
<member name="T:System.Net.Http.DelegatingHandler">
<summary>A base type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.</summary>
</member>
<member name="M:System.Net.Http.DelegatingHandler.#ctor">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class.</summary>
</member>
<member name="M:System.Net.Http.DelegatingHandler.#ctor(System.Net.Http.HttpMessageHandler)">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class with a specific inner handler.</summary>
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
</member>
<member name="M:System.Net.Http.DelegatingHandler.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.DelegatingHandler" />, and optionally disposes of the managed resources.</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources. </param>
</member>
<member name="P:System.Net.Http.DelegatingHandler.InnerHandler">
<summary>Gets or sets the inner handler which processes the HTTP response messages.</summary>
<returns>Returns <see cref="T:System.Net.Http.HttpMessageHandler" />.The inner handler for HTTP response messages.</returns>
</member>
<member name="M:System.Net.Http.DelegatingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)">
<summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary>
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />. The task object representing the asynchronous operation.</returns>
<param name="request">The HTTP request message to send to the server.</param>
<param name="cancellationToken">A cancellation token to cancel operation.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception>
</member>
<member name="T:System.Net.Http.FormUrlEncodedContent">
<summary>A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.</summary>
</member>
<member name="M:System.Net.Http.FormUrlEncodedContent.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.FormUrlEncodedContent" /> class with a specific collection of name/value pairs.</summary>
<param name="nameValueCollection">A collection of name/value pairs.</param>
</member>
<member name="T:System.Net.Http.HttpClient">
<summary>Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. </summary>
</member>
<member name="M:System.Net.Http.HttpClient.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class.</summary>
</member>
<member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary>
<param name="handler">The HTTP handler stack to use for sending requests. </param>
</member>
<member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a spec
评论1