mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Upgrading Web Api libraries
This commit is contained in:
Binary file not shown.
Binary file not shown.
50
lib/aspnetwebapi/System.Net.Http.Extensions.XML
Normal file
50
lib/aspnetwebapi/System.Net.Http.Extensions.XML
Normal file
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Net.Http.Extensions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Net.Http.HttpClientHandlerExtensions">
|
||||
<summary>
|
||||
Extension methods for <see cref="T:System.Net.Http.HttpClientHandler"/> which expose differences in platform specific capabilities.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientHandlerExtensions.SupportsAllowAutoRedirect(System.Net.Http.HttpClientHandler)">
|
||||
<summary>
|
||||
Gets a value that indicates if <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect">HttpClientHandler.AllowAutoRedirect</see> is supported by the handler.
|
||||
When this property is true and <see cref="P:System.Net.Http.HttpClientHandler.SupportsRedirectConfiguration">HttpClientHandler.SupportsRedirectConfiguration</see> is false, setting <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect">HttpClientHandler.AllowAutoRedirect</see> to true will cause the system default to be used for <see cref="P:System.Net.Http.HttpClientHandler.MaximumAutomaticRedirections">HttpClientHandler.MaximumAutomaticRedirections</see>.
|
||||
</summary>
|
||||
<param name="handler">The <see cref="T:System.Net.Http.HttpClientHandler"/> to check.</param>
|
||||
<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" /> property; otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientHandlerExtensions.SupportsPreAuthenticate(System.Net.Http.HttpClientHandler)">
|
||||
<summary>
|
||||
Gets a value that indicates if <see cref="P:System.Net.Http.HttpClientHandler.PreAuthenticate" /> is supported by the handler.
|
||||
</summary>
|
||||
<param name="handler">The <see cref="T:System.Net.Http.HttpClientHandler"/> to check.</param>
|
||||
<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.PreAuthenticate" /> property; otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientHandlerExtensions.SupportsProtocolVersion(System.Net.Http.HttpClientHandler)">
|
||||
<summary>
|
||||
Gets a value that indicates if <see cref="P:System.Net.Http.HttpClientHandler.ProtocolVersion" />, <see cref="P:System.Net.Http.HttpRequestMessage.ProtocolVersion">HttpRequestMessage.ProtocolVersion</see>, and <see cref="P:System.Net.Http.HttpResponseMessage.ProtocolVersion">HttpResponseMessage.ProtocolVersion</see> are supported by the handler.
|
||||
</summary>
|
||||
<param name="handler">The <see cref="T:System.Net.Http.HttpClientHandler"/> to check.</param>
|
||||
<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.ProtocolVersion" />, <see cref="P:System.Net.Http.HttpRequestMessage.ProtocolVersion">HttpRequestMessage.ProtocolVersion</see>, and <see cref="P:System.Net.Http.HttpResponseMessage.ProtocolVersion">HttpResponseMessage.ProtocolVersion</see> properties; otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientHandlerExtensions.SupportsTransferEncodingChunked(System.Net.Http.HttpClientHandler)">
|
||||
<summary>
|
||||
Gets a value that indicates if <see cref="P:System.Net.Http.HttpRequestMessage.Headers">HttpRequestMessage.Headers</see> with <see cref="P:System.Net.Http.HttpRequestHeaders.TransferEncodingChunked"/> or <see cref="P:System.Net.Http.HttpRequestHeaders.TransferEncoding"/> header value of 'chunked' is supported by the handler.
|
||||
</summary>
|
||||
<param name="handler">The <see cref="T:System.Net.Http.HttpClientHandler"/> to check.</param>
|
||||
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports setting <see cref="P:System.Net.Http.HttpRequestMessage.Headers">HttpRequestMessage.Headers</see> with <see cref="P:System.Net.Http.HttpRequestHeaders.TransferEncodingChunked"/> or <see cref="P:System.Net.Http.HttpRequestHeaders.TransferEncoding"/> header value of 'chunked'; otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientHandlerExtensions.SupportsUseProxy(System.Net.Http.HttpClientHandler)">
|
||||
<summary>
|
||||
Gets a value that indicates if <see cref="P:System.Net.Http.HttpClientHandler.UseProxy" /> is supported by the handler.
|
||||
When this property is true and <see cref="P:System.Net.Http.HttpClientHandler.SupportsProxy">HttpClientHandler.SupportsProxy</see> is false, setting <see cref="P:System.Net.Http.HttpClientHandler.UseProxy">HttpClientHandler.UseProxy</see> to true will cause the system default to be used for <see cref="P:System.Net.Http.HttpClientHandler.Proxy">HttpClientHandler.Proxy</see>.
|
||||
</summary>
|
||||
<param name="handler">The <see cref="T:System.Net.Http.HttpClientHandler"/> to check.</param>
|
||||
<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.UseProxy" /> property; otherwise false.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
lib/aspnetwebapi/System.Net.Http.Extensions.dll
Normal file
BIN
lib/aspnetwebapi/System.Net.Http.Extensions.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -4,178 +4,281 @@
|
||||
<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>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized as JSON. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized as XML. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type string.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. Includes a cancellation token to cancel the request.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a POST request as an asynchronous operation, with a specified value serialized using the given formatter. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified value serialized as JSON. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of the request.</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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified value serialized as XML. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified 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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary> Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type. Includes a cancellation token to cancel the request.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type string.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used.</param>
|
||||
<typeparam name="T">The type of object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and media type string. Includes a cancellation token to cancel the request.</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 to write into the entity body of the request.</param>
|
||||
<param name="formatter">The formatter used to serialize the value.</param>
|
||||
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter 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 object to serialize.</typeparam>
|
||||
<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)">
|
||||
<summary>Sends a PUT request as an asynchronous operation, with a specified value serialized using the given formatter and medai type string. Includes a cancellation token to cancel the request.</summary>
|
||||
<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 to write into the entity body of 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 object to serialize.</typeparam>
|
||||
<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>
|
||||
@@ -402,6 +505,24 @@
|
||||
<param name="headers">The response headers</param>
|
||||
<param name="cookies">The cookie values to add to the response.</param>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.InvalidByteRangeException">
|
||||
<summary> An exception thrown by <see cref="T:System.Net.Http.ByteRangeStreamContent" /> in case none of the requested ranges overlap with the current extend of the selected resource. The current extend of the resource is indicated in the ContentRange property. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.String,System.Exception)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.InvalidByteRangeException.ContentRange">
|
||||
<summary> The current extend of the resource indicated in terms of a ContentRange header field. </summary>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.MultipartFileData">
|
||||
<summary>Represents a multipart file data.</summary>
|
||||
</member>
|
||||
@@ -454,19 +575,19 @@
|
||||
<returns>The root path where the content of MIME multipart body parts are written to.</returns>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.MultipartFormDataStreamProvider">
|
||||
<summary> An <see cref="T:System.Net.Http.IMultipartStreamProvider" /> suited for use with HTML file uploads for writing file content to a <see cref="T:System.IO.FileStream" />. The stream provider looks at the <b>Content-Disposition</b> header field and determines an output <see cref="T:System.IO.Stream" /> based on the presence of a <b>filename</b> parameter. If a <b>filename</b> parameter is present in the <b>Content-Disposition</b> header field then the body part is written to a <see cref="T:System.IO.FileStream" />, otherwise it is written to a <see cref="T:System.IO.MemoryStream" />. This makes it convenient to process MIME Multipart HTML Form data which is a combination of form data and file content. </summary>
|
||||
<summary>Represents an <see cref="T:System.Net.Http.IMultipartStreamProvider" /> suited for use with HTML file uploads for writing file content to a <see cref="T:System.IO.FileStream" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.#ctor(System.String)">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataStreamProvider" /> class. </summary>
|
||||
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.#ctor(System.String,System.Int32)">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataStreamProvider" /> class. </summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataStreamProvider" /> class.</summary>
|
||||
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
|
||||
<param name="bufferSize">The number of bytes buffered for writes to the file.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.ExecutePostProcessingAsync">
|
||||
<summary>Reads the non-file contents as form data</summary>
|
||||
<summary>Reads the non-file contents as form data.</summary>
|
||||
<returns>A task that represents the asynchronous operation.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.MultipartFormDataStreamProvider.FormData">
|
||||
@@ -474,6 +595,7 @@
|
||||
<returns>The <see cref="T:System.Collections.Specialized.NameValueCollection" /> of form data.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
|
||||
<summary>Gets the streaming instance where the message body part is written.</summary>
|
||||
<returns>The <see cref="T:System.IO.Stream" /> instance where the message body part is written.</returns>
|
||||
<param name="parent">The HTTP content that contains this body part.</param>
|
||||
<param name="headers">Header fields describing the body part.</param>
|
||||
@@ -551,7 +673,7 @@
|
||||
</member>
|
||||
<member name="P:System.Net.Http.ObjectContent.Formatter">
|
||||
<summary>Gets the media-type formatter associated with this content instance.</summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" />.</returns>
|
||||
<returns>The media type formatter associated with this content instance.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.ObjectContent.ObjectType">
|
||||
<summary>Gets the type of object managed by this <see cref="T:System.Net.Http.ObjectContent" /> instance.</summary>
|
||||
@@ -621,6 +743,18 @@
|
||||
<returns>true if length is a valid length; otherwise, false.</returns>
|
||||
<param name="length">The length in bytes of the stream content.</param>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.UnsupportedMediaTypeException">
|
||||
<summary> Defines an exception type for signalling that a request's media type was not supported. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.UnsupportedMediaTypeException.#ctor(System.String,System.Net.Http.Headers.MediaTypeHeaderValue)">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.UnsupportedMediaTypeException" /> class. </summary>
|
||||
<param name="message">The message that describes the error.</param>
|
||||
<param name="mediaType">The unsupported media type.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.UnsupportedMediaTypeException.MediaType">
|
||||
<summary>Gets or sets the media type.</summary>
|
||||
<returns>The media type.</returns>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.UriExtensions">
|
||||
<summary>Contains extension methods to allow strongly typed objects to be read from the query component of <see cref="T:System.Uri" /> instances. </summary>
|
||||
</member>
|
||||
@@ -655,6 +789,10 @@
|
||||
<member name="M:System.Net.Http.Formatting.BufferedMediaTypeFormatter.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.BufferedMediaTypeFormatter" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.BufferedMediaTypeFormatter.#ctor(System.Net.Http.Formatting.BufferedMediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.BufferedMediaTypeFormatter" /> class.</summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.BufferedMediaTypeFormatter" /> instance to copy settings from.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.BufferedMediaTypeFormatter.BufferSize">
|
||||
<summary>Gets or sets the suggested size of buffer to use with streams in bytes.</summary>
|
||||
<returns>The suggested size of buffer to use with streams in bytes.</returns>
|
||||
@@ -706,7 +844,7 @@
|
||||
<summary> The media type that is associated with the formatter chosen for serialization. Can be null. </summary>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.Formatting.DefaultContentNegotiator">
|
||||
<summary>The default implementation of <see cref="T:System.Net.Http.Formatting.IContentNegotiator" />, which is used to select a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> for an <see cref="T:System.Net.Http.HttpRequestMessage" /> or <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
|
||||
<summary> The default implementation of <see cref="T:System.Net.Http.Formatting.IContentNegotiator" />, which is used to select a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> for an <see cref="T:System.Net.Http.HttpRequestMessage" /> or <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.DefaultContentNegotiator" /> class.</summary>
|
||||
@@ -717,7 +855,7 @@
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.ComputeFormatterMatches(System.Type,System.Net.Http.HttpRequestMessage,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
|
||||
<summary>Determines how well each formatter matches an HTTP request.</summary>
|
||||
<returns>Returns a collection of <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> objects that represent all of the matches.</returns>
|
||||
<returns>Returns a collection of <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> objects that represent all of the matches.</returns>
|
||||
<param name="type">The type to be serialized.</param>
|
||||
<param name="request">The request.</param>
|
||||
<param name="formatters">The set of <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> objects from which to choose.</param>
|
||||
@@ -729,29 +867,29 @@
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.MatchAcceptHeader(System.Collections.Generic.IEnumerable{System.Net.Http.Headers.MediaTypeWithQualityHeaderValue},System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Matches a set of Accept header fields against the media types that a formatter supports.</summary>
|
||||
<returns>Returns a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> object that indicates the quality of the match, or null if there is no match.</returns>
|
||||
<param name="sortedAcceptValues">A list of Accept header values, sorted in descending order of q factor. You can create this list by calling the <see cref="M:System.Net.Http.Formatting.DefaultContentNegotiator.SortMediaTypeWithQualityHeaderValuesByQFactor(System.Collections.Generic.ICollection{System.Net.Http.Headers.MediaTypeWithQualityHeaderValue})" /> method.</param>
|
||||
<param name="sortedAcceptValues">A list of Accept header values, sorted in descending order of q factor. You can create this list by calling the <see cref="M:System.Net.Http.Formatting.DefaultContentNegotiator.SortStringWithQualityHeaderValuesByQFactor(System.Collections.Generic.ICollection{System.Net.Http.Headers.StringWithQualityHeaderValue})" /> method.</param>
|
||||
<param name="formatter">The formatter to match against.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.MatchMediaTypeMapping(System.Net.Http.HttpRequestMessage,System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Matches a request against the <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> objects in a media-type formatter.</summary>
|
||||
<returns>Returns a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> object that indicates the quality of the match, or null if there is no match.</returns>
|
||||
<param name="request">The requrst.</param>
|
||||
<param name="request">The request to match.</param>
|
||||
<param name="formatter">The media-type formatter.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.MatchRequestMediaType(System.Net.Http.HttpRequestMessage,System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Match the content type of a request against the media types that a formatter supports.</summary>
|
||||
<returns>Returns a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> object that indicates the quality of the match, or null if there is no match.</returns>
|
||||
<param name="request">The request.</param>
|
||||
<param name="request">The request to match.</param>
|
||||
<param name="formatter">The formatter to match against.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.MatchType(System.Type,System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Selects the first supported media type of a formatter.</summary>
|
||||
<returns>Returns a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> with <see cref="P:System.Net.Http.Formatting.MediaTypeFormatterMatch.Ranking" /> set to <see cref="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnCanWriteType" />, or null if there is no match. </returns>
|
||||
<returns>Returns a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> with <see cref="P:System.Net.Http.Formatting.MediaTypeFormatterMatch.Ranking" /> set to MatchOnCanWriteType, or null if there is no match. A <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> indicating the quality of the match or null is no match.</returns>
|
||||
<param name="type">The type to match.</param>
|
||||
<param name="formatter">The formatter to match against.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.Negotiate(System.Type,System.Net.Http.HttpRequestMessage,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
|
||||
<summary> Performs content negotiating by selecting the most appropriate <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> out of the passed in <paramref name="formatters" /> for the given <paramref name="request" /> that can serialize an object of the given <paramref name="type" />. </summary>
|
||||
<summary>Performs content negotiating by selecting the most appropriate <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> out of the passed in <paramref name="formatters" /> for the given <paramref name="request" /> that can serialize an object of the given <paramref name="type" />.</summary>
|
||||
<returns>The result of the negotiation containing the most appropriate <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> instance, or null if there is no appropriate formatter.</returns>
|
||||
<param name="type">The type to be serialized.</param>
|
||||
<param name="request">The request.</param>
|
||||
@@ -764,17 +902,22 @@
|
||||
<param name="formatter">The selected media formatter.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.SelectResponseMediaTypeFormatter(System.Collections.Generic.ICollection{System.Net.Http.Formatting.MediaTypeFormatterMatch})">
|
||||
<summary>Selects the best match among the candidate matches found.</summary>
|
||||
<returns>Returns the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> object that represents the best match.</returns>
|
||||
<summary>Select the best match among the candidate matches found.</summary>
|
||||
<returns>Returns the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterMatch" /> object that represents the best match. </returns>
|
||||
<param name="matches">The collection of matches.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.ShouldMatchOnType(System.Collections.Generic.IEnumerable{System.Net.Http.Headers.MediaTypeWithQualityHeaderValue})">
|
||||
<summary> Determine whether to match on type or not. This is used to determine whether to generate a 406 response or use the default media type formatter in case there is no match against anything in the request. If ExcludeMatchOnTypeOnly is true then we don't match on type unless there are no accept headers. </summary>
|
||||
<returns>True if not ExcludeMatchOnTypeOnly and accept headers with a q-factor bigger than 0.0 are present.</returns>
|
||||
<param name="sortedAcceptValues">The sorted accept header values to match.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.SortMediaTypeWithQualityHeaderValuesByQFactor(System.Collections.Generic.ICollection{System.Net.Http.Headers.MediaTypeWithQualityHeaderValue})">
|
||||
<summary>Sorts Accept header values in descending order of q factor.</summary>
|
||||
<returns>Returns the sorted list of MediaTypeWithQualityHeaderValue objects.</returns>
|
||||
<param name="headerValues">A collection of MediaTypeWithQualityHeaderValue objects, representing the Accept header values.</param>
|
||||
<param name="headerValues">A collection of StringWithQualityHeaderValue objects, representing the header fields.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.DefaultContentNegotiator.SortStringWithQualityHeaderValuesByQFactor(System.Collections.Generic.ICollection{System.Net.Http.Headers.StringWithQualityHeaderValue})">
|
||||
<summary>Sorts a list of Accept-Charset, Accept-Encoding, Accept-Language or related header values in descending order or q factor. </summary>
|
||||
<summary>Sorts a list of Accept-Charset, Accept-Encoding, Accept-Language or related header values in descending order or q factor.</summary>
|
||||
<returns>Returns the sorted list of StringWithQualityHeaderValue objects.</returns>
|
||||
<param name="headerValues">A collection of StringWithQualityHeaderValue objects, representing the header fields.</param>
|
||||
</member>
|
||||
@@ -851,6 +994,10 @@
|
||||
<member name="M:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter.#ctor(System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" /> class.</summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" /> instance to copy settings from.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter.CanReadType(System.Type)">
|
||||
<summary>Queries whether the <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" /> can deserializean object of the specified type.</summary>
|
||||
<returns>true if the <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" /> can deserialize the type; otherwise, false.</returns>
|
||||
@@ -912,12 +1059,29 @@
|
||||
<returns>true if <paramref name="member" /> should be treated as a required member; otherwise false.</returns>
|
||||
<param name="member">The <see cref="T:System.Reflection.MemberInfo" /> to be deserialized.</param>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.Formatting.JsonContractResolver">
|
||||
<summary>Represents the default <see cref="T:Newtonsoft.Json.Serialization.IContractResolver" /> used by <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" />. It uses the formatter's <see cref="T:System.Net.Http.Formatting.IRequiredMemberSelector" /> to select required members and recognizes the <see cref="T:System.SerializableAttribute" /> type annotation.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.JsonContractResolver.#ctor(System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.JsonContractResolver" /> class.</summary>
|
||||
<param name="formatter">The formatter to use for resolving required members.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.JsonContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)">
|
||||
<summary>Creates a property on the specified class by using the specified parameters.</summary>
|
||||
<returns>A <see cref="T:Newtonsoft.Json.Serialization.JsonProperty" /> to create on the specified class by using the specified parameters.</returns>
|
||||
<param name="member">The member info.</param>
|
||||
<param name="memberSerialization">The member serialization.</param>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.Formatting.JsonMediaTypeFormatter">
|
||||
<summary>Represents the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> class to handle JSON. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.JsonMediaTypeFormatter.#ctor">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" /> class. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.JsonMediaTypeFormatter.#ctor(System.Net.Http.Formatting.JsonMediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" /> class.</summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" /> instance to copy settings from.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.JsonMediaTypeFormatter.CanReadType(System.Type)">
|
||||
<summary>Determines whether this <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" /> can read objects of the specified <paramref name="type" />.</summary>
|
||||
<returns>true if objects of this <paramref name="type" /> can be read, otherwise false.</returns>
|
||||
@@ -975,6 +1139,10 @@
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatter.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatter.#ctor(System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> class.</summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> instance to copy settings from.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatter.CanReadType(System.Type)">
|
||||
<summary>Queries whether this <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> can deserializean object of the specified type.</summary>
|
||||
<returns>true if the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> can deserialize the type; otherwise, false.</returns>
|
||||
@@ -1048,76 +1216,68 @@
|
||||
<exception cref="T:System.NotSupportedException">Derived types need to support writing.</exception>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.Formatting.MediaTypeFormatterCollection">
|
||||
<summary>Represents a collection class that contains <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> instances.</summary>
|
||||
<summary> Collection class that contains <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> instances. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterCollection" /> class with default values.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterCollection" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.#ctor(System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterCollection" /> class with the given <paramref name="formatters" />.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatterCollection" /> class.</summary>
|
||||
<param name="formatters">A collection of <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> instances to place in the collection.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.ClearItems">
|
||||
<summary>Removes all items in the collection.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.FindReader(System.Type,System.Net.Http.Headers.MediaTypeHeaderValue)">
|
||||
<summary> Searches a collection for a formatter that can read the .NET <paramref name="type" /> in the given <paramref name="mediaType" />. </summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> that can read the type, or null if no formatter found.</returns>
|
||||
<param name="type">The .NET type to read.</param>
|
||||
<summary>Helper to search a collection for a formatter that can read the .NET type in the given mediaType.</summary>
|
||||
<returns>The formatter that can read the type. Null if no formatter found.</returns>
|
||||
<param name="type">The .NET type to read</param>
|
||||
<param name="mediaType">The media type to match on.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.FindWriter(System.Type,System.Net.Http.Headers.MediaTypeHeaderValue)">
|
||||
<summary> Searches a collection for a formatter that can write the .NET <paramref name="type" /> in the given <paramref name="mediaType" />. </summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> that can write the type, or null if no formatter found.</returns>
|
||||
<param name="type">The .NET type to write.</param>
|
||||
<summary>Helper to search a collection for a formatter that can write the .NET type in the given mediaType.</summary>
|
||||
<returns>The formatter that can write the type. Null if no formatter found.</returns>
|
||||
<param name="type">The .NET type to read</param>
|
||||
<param name="mediaType">The media type to match on.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.MediaTypeFormatterCollection.FormUrlEncodedFormatter">
|
||||
<summary> Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for application/x-www-form-urlencoded data. </summary>
|
||||
<returns> The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for application/x-www-form-urlencoded data. </returns>
|
||||
<summary>Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for application/x-www-form-urlencoded data.</summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.FormUrlEncodedMediaTypeFormatter" />to use for application/x-www-form-urlencoded data.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.InsertItem(System.Int32,System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Inserts the specified item at the specified index in the collection.</summary>
|
||||
<param name="index">The index to insert at.</param>
|
||||
<param name="item">The item to insert.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.IsTypeExcludedFromValidation(System.Type)">
|
||||
<summary> Determines whether the <paramref name="type" /> is one of those loosely defined types that should be excluded from validation.</summary>
|
||||
<summary>Returns true if the type is one of those loosely defined types that should be excluded from validation.</summary>
|
||||
<returns>true if the type should be excluded; otherwise, false.</returns>
|
||||
<param name="type">The .NET <see cref="T:System.Type" /> to validate.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.MediaTypeFormatterCollection.JsonFormatter">
|
||||
<summary> Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for JSON. </summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for JSON.</returns>
|
||||
<summary>Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for JSON.</summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.JsonMediaTypeFormatter" /> to use for JSON.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.RemoveItem(System.Int32)">
|
||||
<summary>Removes the item at the specified index.</summary>
|
||||
<param name="index">The index of the item to remove.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterCollection.SetItem(System.Int32,System.Net.Http.Formatting.MediaTypeFormatter)">
|
||||
<summary>Assigns the item at the specified index in the collection.</summary>
|
||||
<param name="index">The index to insert at.</param>
|
||||
<param name="item">The item to assign.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.MediaTypeFormatterCollection.XmlFormatter">
|
||||
<summary> Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for XML.</summary>
|
||||
<returns> The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for XML.</returns>
|
||||
<summary>Gets the <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to use for XML.</summary>
|
||||
<returns>The <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" />to use for XML.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddQueryStringMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.Net.Http.Headers.MediaTypeHeaderValue)">
|
||||
<summary> Updates the given set of formatter of <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> elements so that it associates the mediaType with <see cref="T:System.Uri" />s containing a specific query parameter and value. </summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to receive the new <see cref="T:System.Net.Http.Formatting.QueryStringMapping" /> item.</param>
|
||||
<param name="queryStringParameterName">The name of the query parameter.</param>
|
||||
<param name="queryStringParameterValue">The value assigned to that query parameter.</param>
|
||||
<param name="mediaType">The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> to associate with a <see cref="T:System.Uri" /> containing a query string matching queryStringParameterName and queryStringParameterValue.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddQueryStringMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.String)">
|
||||
<summary> Updates the given set of formatter of <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> elements so that it associates the mediaType with <see cref="T:System.Uri" />s containing a specific query parameter and value. </summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to receive the new <see cref="T:System.Net.Http.Formatting.QueryStringMapping" /> item.</param>
|
||||
<param name="queryStringParameterName">The name of the query parameter.</param>
|
||||
<param name="queryStringParameterValue">The value assigned to that query parameter.</param>
|
||||
<param name="mediaType">The media type to associate with a <see cref="T:System.Uri" /> containing a query string matching queryStringParameterName and queryStringParameterValue.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddRequestHeaderMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.StringComparison,System.Boolean,System.Net.Http.Headers.MediaTypeHeaderValue)">
|
||||
<summary> Updates the given set of formatter of <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> elements so that it associates the mediaType with a specific HTTP request header field with a specific value. </summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to receive the new <see cref="T:System.Net.Http.Formatting.MediaRangeMapping" /> item.</param>
|
||||
<param name="headerName">Name of the header to match.</param>
|
||||
<param name="headerValue">The header value to match.</param>
|
||||
<param name="valueComparison">The <see cref="T:System.StringComparison" /> to use when matching headerValue.</param>
|
||||
<param name="isValueSubstring">if set to true then headerValue is considered a match if it matches a substring of the actual header value.</param>
|
||||
<param name="mediaType">The <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" /> to associate with a <see cref="M:HttpRequestMessage.Header" /> entry with a name matching headerName and a value matching headerValue.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddRequestHeaderMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.StringComparison,System.Boolean,System.String)">
|
||||
<summary> Updates the given set of formatter of <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> elements so that it associates the mediaType with a specific HTTP request header field with a specific value. </summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> to receive the new <see cref="T:System.Net.Http.Formatting.MediaRangeMapping" /> item.</param>
|
||||
<param name="headerName">Name of the header to match.</param>
|
||||
<param name="headerValue">The header value to match.</param>
|
||||
<param name="valueComparison">The <see cref="T:System.StringComparison" /> to use when matching headerValue.</param>
|
||||
<param name="isValueSubstring">if set to true then headerValue is considered a match if it matches a substring of the actual header value.</param>
|
||||
<param name="mediaType">The media type to associate with a <see cref="M:HttpRequestMessage.Header" /> entry with a name matching headerName and a value matching headerValue.</param>
|
||||
<member name="T:System.Net.Http.Formatting.MediaTypeFormatterExtensions">
|
||||
<summary>Represents extensions for adding <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" /> items to a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" />. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddQueryStringMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.Net.Http.Headers.MediaTypeHeaderValue)"></member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddQueryStringMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.String)"></member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddRequestHeaderMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.StringComparison,System.Boolean,System.Net.Http.Headers.MediaTypeHeaderValue)"></member>
|
||||
<member name="M:System.Net.Http.Formatting.MediaTypeFormatterExtensions.AddRequestHeaderMapping(System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.String,System.StringComparison,System.Boolean,System.String)"></member>
|
||||
<member name="T:System.Net.Http.Formatting.MediaTypeFormatterMatch">
|
||||
<summary> This class describes how well a particular <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> matches a request. </summary>
|
||||
</member>
|
||||
@@ -1143,26 +1303,26 @@
|
||||
<member name="T:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking">
|
||||
<summary> Contains information about the degree to which a <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> matches the explicit or implicit preferences found in an incoming request. </summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.None">
|
||||
<summary> No match was found </summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnCanWriteType">
|
||||
<summary> Matched on a type, meaning that the formatter is able to serialize the type.</summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestAcceptHeaderAllMediaRange">
|
||||
<summary>Matched on an explicit “*/*” range in the Accept header.</summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestAcceptHeaderLiteral">
|
||||
<summary>Matched on an explicit literal accept header, such as “application/json”.</summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestAcceptHeaderSubtypeMediaRange">
|
||||
<summary>Matched on an explicit subtype range in an Accept header, such as “application/*”.</summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestAcceptHeaderAllMediaRange">
|
||||
<summary>Matched on an explicit “*/*” range in the Accept header.</summary>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestMediaType">
|
||||
<summary> Matched on the media type of the entity body in the HTTP request message.</summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestWithMediaTypeMapping">
|
||||
<summary> Matched on <see cref="T:System.Net.Http.HttpRequestMessage" /> after having applied the various <see cref="T:System.Net.Http.Formatting.MediaTypeMapping" />s. </summary>
|
||||
</member>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.MatchOnRequestMediaType">
|
||||
<summary> Matched on the media type of the entity body in the HTTP request message.</summary>
|
||||
<member name="F:System.Net.Http.Formatting.MediaTypeFormatterMatchRanking.None">
|
||||
<summary> No match was found </summary>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.Formatting.MediaTypeMapping">
|
||||
<summary> An abstract base class used to create an association between <see cref="T:System.Net.Http.HttpRequestMessage" /> or <see cref="T:System.Net.Http.HttpResponseMessage" /> instances that have certain characteristics and a specific <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />. </summary>
|
||||
@@ -1264,6 +1424,10 @@
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.#ctor(System.Net.Http.Formatting.XmlMediaTypeFormatter)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> class.</summary>
|
||||
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> instance to copy settings from.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.CanReadType(System.Type)">
|
||||
<summary>Queries whether the <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> can deserializean object of the specified type.</summary>
|
||||
<returns>true if the <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> can deserialize the type; otherwise, false.</returns>
|
||||
@@ -1274,10 +1438,35 @@
|
||||
<returns>true if the <see cref="T:System.Net.Http.Formatting.XmlMediaTypeFormatter" /> can serialize the type; otherwise, false.</returns>
|
||||
<param name="type">The type to serialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.CreateXmlReader(System.IO.Stream,System.Net.Http.HttpContent)">
|
||||
<summary>Called during deserialization to get the XML reader to use for reading objects from the stream.</summary>
|
||||
<returns>The <see cref="T:System.Xml.XmlReader" /> to use for reading objects.</returns>
|
||||
<param name="readStream">The <see cref="T:System.IO.Stream" /> to read from.</param>
|
||||
<param name="content">The <see cref="T:System.Net.Http.HttpContent" /> for the content being read.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.CreateXmlWriter(System.IO.Stream,System.Net.Http.HttpContent)">
|
||||
<summary>Called during serialization to get the XML writer to use for writing objects to the stream.</summary>
|
||||
<returns>The <see cref="T:System.Xml.XmlWriter" /> to use for writing objects.</returns>
|
||||
<param name="writeStream">The <see cref="T:System.IO.Stream" /> to write to.</param>
|
||||
<param name="content">The <see cref="T:System.Net.Http.HttpContent" /> for the content being written.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.XmlMediaTypeFormatter.DefaultMediaType">
|
||||
<summary>Gets the default media type for the XML formatter.</summary>
|
||||
<returns>The default media type, which is “application/xml”.</returns>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.GetDeserializer(System.Type,System.Net.Http.HttpContent)">
|
||||
<summary>Called during deserialization to get the XML serializer to use for deserializing objects.</summary>
|
||||
<returns>An instance of <see cref="T:System.Runtime.Serialization.XmlObjectSerializer" /> or <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use for deserializing the object.</returns>
|
||||
<param name="type">The type of object to deserialize.</param>
|
||||
<param name="content">The <see cref="T:System.Net.Http.HttpContent" /> for the content being read.</param>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Formatting.XmlMediaTypeFormatter.GetSerializer(System.Type,System.Object,System.Net.Http.HttpContent)">
|
||||
<summary>Called during serialization to get the XML serializer to use for serializing objects.</summary>
|
||||
<returns>An instance of <see cref="T:System.Runtime.Serialization.XmlObjectSerializer" /> or <see cref="T:System.Xml.Serialization.XmlSerializer" /> to use for serializing the object.</returns>
|
||||
<param name="type">The type of object to serialize.</param>
|
||||
<param name="value">The object to serialize.</param>
|
||||
<param name="content">The <see cref="T:System.Net.Http.HttpContent" /> for the content being written.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Formatting.XmlMediaTypeFormatter.Indent">
|
||||
<summary>Gets or sets a value indicating whether to indent elements when writing data.</summary>
|
||||
<returns>true to indent elements; otherwise, false.</returns>
|
||||
@@ -1335,21 +1524,15 @@
|
||||
<member name="T:System.Net.Http.Handlers.HttpProgressEventArgs">
|
||||
<summary>Represents the event arguments for the HTTP progress.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.Handlers.HttpProgressEventArgs.#ctor(System.Int32,System.Object,System.Int32,System.Nullable{System.Int64})">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Handlers.HttpProgressEventArgs" /> class.</summary>
|
||||
<member name="M:System.Net.Http.Handlers.HttpProgressEventArgs.#ctor(System.Int32,System.Object,System.Int64,System.Nullable{System.Int64})">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.Handlers.HttpProgressEventArgs" /> class. </summary>
|
||||
<param name="progressPercentage">The percentage of the progress.</param>
|
||||
<param name="userToken">The user token.</param>
|
||||
<param name="bytesTransferred">The number of bytes transferred.</param>
|
||||
<param name="totalBytes">The total number of bytes transferred.</param>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Handlers.HttpProgressEventArgs.BytesTransferred">
|
||||
<summary>Gets the number of bytes transferred in the HTTP progress.</summary>
|
||||
<returns>The number of bytes transferred in the HTTP progress.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Handlers.HttpProgressEventArgs.TotalBytes">
|
||||
<summary>Gets the total number of bytes transferred by the HTTP progress.</summary>
|
||||
<returns>The total number of bytes transferred by the HTTP progress.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.Handlers.HttpProgressEventArgs.BytesTransferred"></member>
|
||||
<member name="P:System.Net.Http.Handlers.HttpProgressEventArgs.TotalBytes"></member>
|
||||
<member name="T:System.Net.Http.Handlers.ProgressMessageHandler">
|
||||
<summary>Generates progress notification for both request entities being uploaded and response entities being downloaded.</summary>
|
||||
</member>
|
||||
|
BIN
lib/aspnetwebapi/System.Net.Http.Primitives.dll
Normal file
BIN
lib/aspnetwebapi/System.Net.Http.Primitives.dll
Normal file
Binary file not shown.
8
lib/aspnetwebapi/System.Net.Http.Primitives.xml
Normal file
8
lib/aspnetwebapi/System.Net.Http.Primitives.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Net.Http.Primitives</name>
|
||||
</assembly>
|
||||
<members>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
@@ -1,63 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Net.Http.WebRequest</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Net.Http.RtcRequestFactory">
|
||||
<summary>Represents the class that is used to create special <see cref="T:System.Net.Http.HttpRequestMessage" /> for use with the Real-Time-Communications (RTC) background notification infrastructure.</summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.RtcRequestFactory.Create(System.Net.Http.HttpMethod,System.Uri)">
|
||||
<summary>Creates a special <see cref="T:System.Net.Http.HttpRequestMessage" /> for use with the Real-Time-Communications (RTC) background notification infrastructure.</summary>
|
||||
<returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.An HTTP request message for use with the RTC background notification infrastructure.</returns>
|
||||
<param name="method">The HTTP method.</param>
|
||||
<param name="uri">The Uri the request is sent to.</param>
|
||||
</member>
|
||||
<member name="T:System.Net.Http.WebRequestHandler">
|
||||
<summary>Provides desktop-specific features not available to Windows Store apps or other environments. </summary>
|
||||
</member>
|
||||
<member name="M:System.Net.Http.WebRequestHandler.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.WebRequestHandler" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.AllowPipelining">
|
||||
<summary> Gets or sets a value that indicates whether to pipeline the request to the Internet resource.</summary>
|
||||
<returns>Returns <see cref="T:System.Boolean" />.true if the request should be pipelined; otherwise, false. The default is true. </returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.AuthenticationLevel">
|
||||
<summary>Gets or sets a value indicating the level of authentication and impersonation used for this request.</summary>
|
||||
<returns>Returns <see cref="T:System.Net.Security.AuthenticationLevel" />.A bitwise combination of the <see cref="T:System.Net.Security.AuthenticationLevel" /> values. The default value is <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequested" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.CachePolicy">
|
||||
<summary>Gets or sets the cache policy for this request.</summary>
|
||||
<returns>Returns <see cref="T:System.Net.Cache.RequestCachePolicy" />.A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that defines a cache policy. The default is <see cref="P:System.Net.WebRequest.DefaultCachePolicy" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.ClientCertificates">
|
||||
<summary>Gets or sets the collection of security certificates that are associated with this request.</summary>
|
||||
<returns>Returns <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" />.The collection of security certificates associated with this request.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.ContinueTimeout">
|
||||
<summary>Gets or sets the amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data.</summary>
|
||||
<returns>Returns <see cref="T:System.TimeSpan" />.The amount of time, in milliseconds, the application will wait for 100-continue from the server before uploading data. The default value is 350 milliseconds.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.ImpersonationLevel">
|
||||
<summary>Gets or sets the impersonation level for the current request.</summary>
|
||||
<returns>Returns <see cref="T:System.Security.Principal.TokenImpersonationLevel" />.The impersonation level for the request. The default is <see cref="F:System.Security.Principal.TokenImpersonationLevel.Delegation" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.MaxResponseHeadersLength">
|
||||
<summary>Gets or sets the maximum allowed length of the response headers.</summary>
|
||||
<returns>Returns <see cref="T:System.Int32" />.The length, in kilobytes (1024 bytes), of the response headers.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.ReadWriteTimeout">
|
||||
<summary>Gets or sets a time-out in milliseconds when writing a request to or reading a response from a server.</summary>
|
||||
<returns>Returns <see cref="T:System.Int32" />.The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes). </returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.ServerCertificateValidationCallback">
|
||||
<summary>Gets or sets a callback method to validate the server certificate.</summary>
|
||||
<returns>Returns <see cref="T:System.Net.Security.RemoteCertificateValidationCallback" />.A callback method to validate the server certificate.</returns>
|
||||
</member>
|
||||
<member name="P:System.Net.Http.WebRequestHandler.UnsafeAuthenticatedConnectionSharing">
|
||||
<summary>Gets or sets a value that indicates whether to allow high-speed NTLM-authenticated connection sharing.</summary>
|
||||
<returns>Returns <see cref="T:System.Boolean" />.true to keep the authenticated connection open; otherwise, false.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -8,8 +8,10 @@
|
||||
<summary> Provides a global <see cref="T:System.Web.Http.HttpConfiguration" /> for ASP.NET applications. </summary>
|
||||
</member>
|
||||
<member name="P:System.Web.Http.GlobalConfiguration.Configuration"></member>
|
||||
<member name="P:System.Web.Http.GlobalConfiguration.DefaultHandler">
|
||||
<summary> Gets the default message handler that will be called for all requests. </summary>
|
||||
<member name="M:System.Web.Http.GlobalConfiguration.Configure(System.Action{System.Web.Http.HttpConfiguration})"></member>
|
||||
<member name="P:System.Web.Http.GlobalConfiguration.DefaultHandler"></member>
|
||||
<member name="P:System.Web.Http.GlobalConfiguration.DefaultServer">
|
||||
<summary> Gets the global <see cref="T:System.Web.Http.HttpServer" />. </summary>
|
||||
</member>
|
||||
<member name="T:System.Web.Http.RouteCollectionExtensions">
|
||||
<summary> Extension methods for <see cref="T:System.Web.Routing.RouteCollection" /></summary>
|
||||
@@ -49,47 +51,21 @@
|
||||
<param name="handler">The handler to which the request will be dispatched.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Http.WebHost.HttpControllerHandler">
|
||||
<summary> A <see cref="T:System.Web.IHttpAsyncHandler" /> that passes ASP.NET requests into the <see cref="T:System.Web.Http.HttpServer" /> pipeline and write the result back. </summary>
|
||||
<summary>A <see cref="T:System.Web.IHttpTaskAsyncHandler" /> that passes ASP.NET requests into the <see cref="T:System.Web.Http.HttpServer" /> pipeline and write the result back.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.#ctor(System.Web.Routing.RouteData)">
|
||||
<summary> Initializes a new instance of the <see cref="T:System.Web.Http.WebHost.HttpControllerHandler" /> class. </summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.Http.WebHost.HttpControllerHandler" /> class.</summary>
|
||||
<param name="routeData">The route data.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
|
||||
<summary> Begins the process request. </summary>
|
||||
<returns>An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process. </returns>
|
||||
<param name="httpContextBase">The HTTP context base.</param>
|
||||
<param name="callback">The callback.</param>
|
||||
<param name="state">The state.</param>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.#ctor(System.Web.Routing.RouteData,System.Net.Http.HttpMessageHandler)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.Http.WebHost.HttpControllerHandler" /> class.</summary>
|
||||
<param name="routeData">The route data.</param>
|
||||
<param name="handler">The message handler to dispatch requests to.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.EndProcessRequest(System.IAsyncResult)">
|
||||
<summary> Provides an asynchronous process End method when the process ends. </summary>
|
||||
<param name="result">An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.Http.WebHost.HttpControllerHandler.IsReusable">
|
||||
<summary> Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler" /> instance. </summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.ProcessRequest(System.Web.HttpContextBase)">
|
||||
<summary> Processes the request. </summary>
|
||||
<param name="httpContextBase">The HTTP context base.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.System#Web#IHttpAsyncHandler#BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
|
||||
<summary> Begins processing the request. </summary>
|
||||
<returns>An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process. </returns>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
<param name="callback">The callback.</param>
|
||||
<param name="state">The state.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.System#Web#IHttpAsyncHandler#EndProcessRequest(System.IAsyncResult)">
|
||||
<summary> Provides an asynchronous process End method when the process ends. </summary>
|
||||
<param name="result">An <see cref="T:System.IAsyncResult" /> that contains information about the status of the process.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.Http.WebHost.HttpControllerHandler.System#Web#IHttpHandler#IsReusable">
|
||||
<summary> Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler" /> instance. </summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.System#Web#IHttpHandler#ProcessRequest(System.Web.HttpContext)">
|
||||
<summary> Processes the request. </summary>
|
||||
<param name="httpContext">The HTTP context base.</param>
|
||||
<member name="M:System.Web.Http.WebHost.HttpControllerHandler.ProcessRequestAsync(System.Web.HttpContext)">
|
||||
<summary>Provides code that handles an asynchronous task</summary>
|
||||
<returns>The asynchronous task.</returns>
|
||||
<param name="context">The HTTP context.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Http.WebHost.HttpControllerRouteHandler">
|
||||
<summary> A <see cref="T:System.Web.Routing.IRouteHandler" /> that returns instances of <see cref="T:System.Web.Http.WebHost.HttpControllerHandler" /> that can pass requests to a given <see cref="T:System.Web.Http.HttpServer" /> instance. </summary>
|
||||
@@ -132,5 +108,21 @@
|
||||
<returns>A buffered output stream.</returns>
|
||||
<param name="response">The response.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Http.WebHost.WebHostPrincipalService">
|
||||
<summary>Represents the webhost principal service.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.WebHostPrincipalService.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.Http.WebHost.WebHostPrincipalService" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.WebHostPrincipalService.GetCurrentPrincipal(System.Net.Http.HttpRequestMessage)">
|
||||
<summary>Returns the current principal associated with the webhost.</summary>
|
||||
<returns>The current principal associated with the webhost.</returns>
|
||||
<param name="request">the request message.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Http.WebHost.WebHostPrincipalService.SetCurrentPrincipal(System.Security.Principal.IPrincipal,System.Net.Http.HttpRequestMessage)">
|
||||
<summary>Sets the current principal associated with the webhost.</summary>
|
||||
<param name="principal">The principal.</param>
|
||||
<param name="request">The request message.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -135,7 +135,10 @@
|
||||
<Reference Include="System.Web.Abstractions">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
|
||||
<Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\aspnetwebapi\System.Web.Http.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\aspnetmvc\System.Web.Mvc.dll</HintPath>
|
||||
|
@@ -1,35 +1,41 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
|
||||
<configSections>
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<remove name="host"/>
|
||||
<remove name="pages"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<remove name="host" />
|
||||
<remove name="pages" />
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
|
||||
<system.web.webPages.razor>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
||||
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
|
||||
<namespaces>
|
||||
<add namespace="System.Web.Mvc"/>
|
||||
<add namespace="System.Web.Mvc.Ajax"/>
|
||||
<add namespace="System.Web.Mvc.Html"/>
|
||||
<add namespace="System.Web.Routing"/>
|
||||
<add namespace="System.Web.Mvc" />
|
||||
<add namespace="System.Web.Mvc.Ajax" />
|
||||
<add namespace="System.Web.Mvc.Html" />
|
||||
<add namespace="System.Web.Routing" />
|
||||
<add namespace="System.Web.WebPages" />
|
||||
<add namespace="System.Linq"/>
|
||||
<add namespace="System.Collections.Generic"/>
|
||||
<add namespace="Orchard.Mvc.Html"/>
|
||||
</namespaces>
|
||||
</pages>
|
||||
</system.web.webPages.razor>
|
||||
|
||||
<system.web>
|
||||
<compilation targetFramework="4.5">
|
||||
<assemblies>
|
||||
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
||||
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
|
||||
<add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
</assemblies>
|
||||
</compilation>
|
||||
</system.web>
|
||||
</configuration>
|
||||
|
||||
</configuration>
|
||||
|
@@ -12,7 +12,7 @@
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Orchard.SecureSocketsLayer</RootNamespace>
|
||||
<AssemblyName>Orchard.SecureSocketsLayer</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<MvcBuildViews>false</MvcBuildViews>
|
||||
<FileUpgradeFlags>
|
||||
</FileUpgradeFlags>
|
||||
@@ -34,6 +34,7 @@
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -43,6 +44,7 @@
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
@@ -92,6 +94,9 @@
|
||||
<ItemGroup>
|
||||
<Content Include="Placement.info" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="web.config" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||
|
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<remove name="host"/>
|
||||
<remove name="pages"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<system.web.webPages.razor>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
|
||||
<namespaces>
|
||||
<add namespace="System.Web.Mvc"/>
|
||||
<add namespace="System.Web.Mvc.Ajax"/>
|
||||
<add namespace="System.Web.Mvc.Html"/>
|
||||
<add namespace="System.Web.Routing"/>
|
||||
<add namespace="System.Web.WebPages"/>
|
||||
<add namespace="System.Linq"/>
|
||||
<add namespace="System.Collections.Generic"/>
|
||||
<add namespace="Orchard.Mvc.Html"/>
|
||||
</namespaces>
|
||||
</pages>
|
||||
</system.web.webPages.razor>
|
||||
<system.web>
|
||||
<compilation targetFramework="4.5">
|
||||
<assemblies>
|
||||
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
||||
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<add assembly="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
</assemblies>
|
||||
</compilation>
|
||||
</system.web>
|
||||
</configuration>
|
@@ -86,7 +86,8 @@
|
||||
<HintPath>..\..\lib\log4net\log4net.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="Newtonsoft.Json">
|
||||
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\newtonsoft.json\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NHibernate, Version=3.3.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
|
||||
|
Reference in New Issue
Block a user