개정판 2581c7b6
issue #00000 markus markup data sql 확장
Change-Id: I7f02a51a8e575d4903d8f56302f263281b101cb5
ID2.Manager/MarkusSQL/InsertAss.SQL | ||
---|---|---|
1 |
-- test |
|
2 |
exec sp_configure |
|
3 |
|
|
4 |
exec sp_configure 'clr enabled',1 |
|
5 |
reconfigure with override |
|
6 |
|
|
7 |
|
|
8 |
exec sp_configure 'show advanced options',1 |
|
9 |
reconfigure with override |
|
10 |
|
|
11 |
|
|
12 |
exec sp_configure 'clr strict security',0; |
|
13 |
reconfigure with override |
|
14 |
|
|
15 |
|
|
16 |
USE master; |
|
17 |
GO |
|
18 |
|
|
19 |
CREATE ASSEMBLY MarkupDataParse |
|
20 |
FROM 'D:\Markus_V3\dbFunctions\MarkupDataParse.dll' |
|
21 |
WITH PERMISSION_SET = SAFE; |
|
22 |
|
|
23 |
|
|
24 |
select * from sys.assemblies |
|
25 |
|
|
26 |
USE markus_SEC; |
|
27 |
GO |
|
28 |
|
|
29 |
CREATE FUNCTION MarkupDataCompress(@inputString NVARCHAR(MAX)) |
|
30 |
RETURNS NVARCHAR(MAX) |
|
31 |
AS EXTERNAL NAME MarkupDataParse.[MarkupDataParse.MarkupDataFunctions].CompressString; |
ID2.Manager/MarkusSQL/System.Net.Http.xml | ||
---|---|---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
|
2 |
<doc> |
|
3 |
<assembly> |
|
4 |
<name>System.Net.Http</name> |
|
5 |
</assembly> |
|
6 |
<members> |
|
7 |
<member name="T:System.Net.Http.ByteArrayContent"> |
|
8 |
<summary>Provides HTTP content based on a byte array.</summary> |
|
9 |
</member> |
|
10 |
<member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[])"> |
|
11 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary> |
|
12 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param> |
|
13 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception> |
|
14 |
</member> |
|
15 |
<member name="M:System.Net.Http.ByteArrayContent.#ctor(System.Byte[],System.Int32,System.Int32)"> |
|
16 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ByteArrayContent" /> class.</summary> |
|
17 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param> |
|
18 |
<param name="offset">The offset, in bytes, in the <paramref name="content" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param> |
|
19 |
<param name="count">The number of bytes in the <paramref name="content" /> starting from the <paramref name="offset" /> parameter used to initialize the <see cref="T:System.Net.Http.ByteArrayContent" />.</param> |
|
20 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> parameter is null. </exception> |
|
21 |
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> parameter is less than zero.-or-The <paramref name="offset" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter.-or-The <paramref name="count " /> parameter is less than zero.-or-The <paramref name="count" /> parameter is greater than the length of content specified by the <paramref name="content" /> parameter - minus the <paramref name="offset" /> parameter.</exception> |
|
22 |
</member> |
|
23 |
<member name="M:System.Net.Http.ByteArrayContent.CreateContentReadStreamAsync"> |
|
24 |
<summary>Creates an HTTP content stream as an asynchronous operation for reading whose backing store is memory from the <see cref="T:System.Net.Http.ByteArrayContent" />.</summary> |
|
25 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
26 |
</member> |
|
27 |
<member name="M:System.Net.Http.ByteArrayContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)"> |
|
28 |
<summary>Serialize and write the byte array provided in the constructor to an HTTP content stream as an asynchronous operation.</summary> |
|
29 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />. The task object representing the asynchronous operation.</returns> |
|
30 |
<param name="stream">The target stream.</param> |
|
31 |
<param name="context">Information about the transport, like channel binding token. This parameter may be null.</param> |
|
32 |
</member> |
|
33 |
<member name="M:System.Net.Http.ByteArrayContent.TryComputeLength(System.Int64@)"> |
|
34 |
<summary>Determines whether a byte array has a valid length in bytes.</summary> |
|
35 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns> |
|
36 |
<param name="length">The length in bytes of the byte array.</param> |
|
37 |
</member> |
|
38 |
<member name="T:System.Net.Http.ClientCertificateOption"> |
|
39 |
<summary>Specifies how client certificates are provided.</summary> |
|
40 |
</member> |
|
41 |
<member name="F:System.Net.Http.ClientCertificateOption.Manual"> |
|
42 |
<summary>The application manually provides the client certificates to the <see cref="T:System.Net.Http.WebRequestHandler" />. This value is the default. </summary> |
|
43 |
</member> |
|
44 |
<member name="F:System.Net.Http.ClientCertificateOption.Automatic"> |
|
45 |
<summary>The <see cref="T:System.Net.Http.HttpClientHandler" /> will attempt to provide all available client certificates automatically.</summary> |
|
46 |
</member> |
|
47 |
<member name="T:System.Net.Http.DelegatingHandler"> |
|
48 |
<summary>A base type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.</summary> |
|
49 |
</member> |
|
50 |
<member name="M:System.Net.Http.DelegatingHandler.#ctor"> |
|
51 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class.</summary> |
|
52 |
</member> |
|
53 |
<member name="M:System.Net.Http.DelegatingHandler.#ctor(System.Net.Http.HttpMessageHandler)"> |
|
54 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.DelegatingHandler" /> class with a specific inner handler.</summary> |
|
55 |
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param> |
|
56 |
</member> |
|
57 |
<member name="M:System.Net.Http.DelegatingHandler.Dispose(System.Boolean)"> |
|
58 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.DelegatingHandler" />, and optionally disposes of the managed resources.</summary> |
|
59 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources. </param> |
|
60 |
</member> |
|
61 |
<member name="P:System.Net.Http.DelegatingHandler.InnerHandler"> |
|
62 |
<summary>Gets or sets the inner handler which processes the HTTP response messages.</summary> |
|
63 |
<returns>Returns <see cref="T:System.Net.Http.HttpMessageHandler" />.The inner handler for HTTP response messages.</returns> |
|
64 |
</member> |
|
65 |
<member name="M:System.Net.Http.DelegatingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
66 |
<summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary> |
|
67 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />. The task object representing the asynchronous operation.</returns> |
|
68 |
<param name="request">The HTTP request message to send to the server.</param> |
|
69 |
<param name="cancellationToken">A cancellation token to cancel operation.</param> |
|
70 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
71 |
</member> |
|
72 |
<member name="T:System.Net.Http.FormUrlEncodedContent"> |
|
73 |
<summary>A container for name/value tuples encoded using application/x-www-form-urlencoded MIME type.</summary> |
|
74 |
</member> |
|
75 |
<member name="M:System.Net.Http.FormUrlEncodedContent.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})"> |
|
76 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.FormUrlEncodedContent" /> class with a specific collection of name/value pairs.</summary> |
|
77 |
<param name="nameValueCollection">A collection of name/value pairs.</param> |
|
78 |
</member> |
|
79 |
<member name="T:System.Net.Http.HttpClient"> |
|
80 |
<summary>Provides a base class for sending HTTP requests and receiving HTTP responses from a resource identified by a URI. </summary> |
|
81 |
</member> |
|
82 |
<member name="M:System.Net.Http.HttpClient.#ctor"> |
|
83 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class.</summary> |
|
84 |
</member> |
|
85 |
<member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler)"> |
|
86 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary> |
|
87 |
<param name="handler">The HTTP handler stack to use for sending requests. </param> |
|
88 |
</member> |
|
89 |
<member name="M:System.Net.Http.HttpClient.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)"> |
|
90 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpClient" /> class with a specific handler.</summary> |
|
91 |
<param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param> |
|
92 |
<param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param> |
|
93 |
</member> |
|
94 |
<member name="P:System.Net.Http.HttpClient.BaseAddress"> |
|
95 |
<summary>Gets or sets the base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</summary> |
|
96 |
<returns>Returns <see cref="T:System.Uri" />.The base address of Uniform Resource Identifier (URI) of the Internet resource used when sending requests.</returns> |
|
97 |
</member> |
|
98 |
<member name="M:System.Net.Http.HttpClient.CancelPendingRequests"> |
|
99 |
<summary>Cancel all pending requests on this instance.</summary> |
|
100 |
</member> |
|
101 |
<member name="P:System.Net.Http.HttpClient.DefaultRequestHeaders"> |
|
102 |
<summary>Gets the headers which should be sent with each request.</summary> |
|
103 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The headers which should be sent with each request.</returns> |
|
104 |
</member> |
|
105 |
<member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String)"> |
|
106 |
<summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary> |
|
107 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
108 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
109 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
110 |
</member> |
|
111 |
<member name="M:System.Net.Http.HttpClient.DeleteAsync(System.String,System.Threading.CancellationToken)"> |
|
112 |
<summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary> |
|
113 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
114 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
115 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
116 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
117 |
</member> |
|
118 |
<member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri)"> |
|
119 |
<summary>Send a DELETE request to the specified Uri as an asynchronous operation.</summary> |
|
120 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
121 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
122 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
123 |
</member> |
|
124 |
<member name="M:System.Net.Http.HttpClient.DeleteAsync(System.Uri,System.Threading.CancellationToken)"> |
|
125 |
<summary>Send a DELETE request to the specified Uri with a cancellation token as an asynchronous operation.</summary> |
|
126 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
127 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
128 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
129 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
130 |
</member> |
|
131 |
<member name="M:System.Net.Http.HttpClient.Dispose(System.Boolean)"> |
|
132 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClient" /> and optionally disposes of the managed resources.</summary> |
|
133 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
134 |
</member> |
|
135 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.String)"> |
|
136 |
<summary>Send a GET request to the specified Uri as an asynchronous operation.</summary> |
|
137 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
138 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
139 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
140 |
</member> |
|
141 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption)"> |
|
142 |
<summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary> |
|
143 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns> |
|
144 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
145 |
<param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param> |
|
146 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
147 |
</member> |
|
148 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)"> |
|
149 |
<summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary> |
|
150 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns> |
|
151 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
152 |
<param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param> |
|
153 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
154 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
155 |
</member> |
|
156 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.String,System.Threading.CancellationToken)"> |
|
157 |
<summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary> |
|
158 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.</returns> |
|
159 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
160 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
161 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
162 |
</member> |
|
163 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri)"> |
|
164 |
<summary>Send a GET request to the specified Uri as an asynchronous operation.</summary> |
|
165 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
166 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
167 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
168 |
</member> |
|
169 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption)"> |
|
170 |
<summary>Send a GET request to the specified Uri with an HTTP completion option as an asynchronous operation.</summary> |
|
171 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
172 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
173 |
<param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param> |
|
174 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
175 |
</member> |
|
176 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)"> |
|
177 |
<summary>Send a GET request to the specified Uri with an HTTP completion option and a cancellation token as an asynchronous operation.</summary> |
|
178 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
179 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
180 |
<param name="completionOption">An HTTP completion option value that indicates when the operation should be considered completed.</param> |
|
181 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
182 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
183 |
</member> |
|
184 |
<member name="M:System.Net.Http.HttpClient.GetAsync(System.Uri,System.Threading.CancellationToken)"> |
|
185 |
<summary>Send a GET request to the specified Uri with a cancellation token as an asynchronous operation.</summary> |
|
186 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
187 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
188 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
189 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
190 |
</member> |
|
191 |
<member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.String)"> |
|
192 |
<summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary> |
|
193 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
194 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
195 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
196 |
</member> |
|
197 |
<member name="M:System.Net.Http.HttpClient.GetByteArrayAsync(System.Uri)"> |
|
198 |
<summary>Send a GET request to the specified Uri and return the response body as a byte array in an asynchronous operation.</summary> |
|
199 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
200 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
201 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
202 |
</member> |
|
203 |
<member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.String)"> |
|
204 |
<summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary> |
|
205 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
206 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
207 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
208 |
</member> |
|
209 |
<member name="M:System.Net.Http.HttpClient.GetStreamAsync(System.Uri)"> |
|
210 |
<summary>Send a GET request to the specified Uri and return the response body as a stream in an asynchronous operation.</summary> |
|
211 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
212 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
213 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
214 |
</member> |
|
215 |
<member name="M:System.Net.Http.HttpClient.GetStringAsync(System.String)"> |
|
216 |
<summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary> |
|
217 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
218 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
219 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
220 |
</member> |
|
221 |
<member name="M:System.Net.Http.HttpClient.GetStringAsync(System.Uri)"> |
|
222 |
<summary>Send a GET request to the specified Uri and return the response body as a string in an asynchronous operation.</summary> |
|
223 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
224 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
225 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
226 |
</member> |
|
227 |
<member name="P:System.Net.Http.HttpClient.MaxResponseContentBufferSize"> |
|
228 |
<summary>Gets or sets the maximum number of bytes to buffer when reading the response content.</summary> |
|
229 |
<returns>Returns <see cref="T:System.Int32" />.The maximum number of bytes to buffer when reading the response content. The default value for this property is 64K.</returns> |
|
230 |
<exception cref="T:System.ArgumentOutOfRangeException">The size specified is less than or equal to zero.</exception> |
|
231 |
<exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception> |
|
232 |
<exception cref="T:System.ObjectDisposedException">The current instance has been disposed. </exception> |
|
233 |
</member> |
|
234 |
<member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent)"> |
|
235 |
<summary>Send a POST request to the specified Uri as an asynchronous operation.</summary> |
|
236 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
237 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
238 |
<param name="content">The HTTP request content sent to the server.</param> |
|
239 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
240 |
</member> |
|
241 |
<member name="M:System.Net.Http.HttpClient.PostAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)"> |
|
242 |
<summary>Send a POST request with a cancellation token as an asynchronous operation.</summary> |
|
243 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
244 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
245 |
<param name="content">The HTTP request content sent to the server.</param> |
|
246 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
247 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
248 |
</member> |
|
249 |
<member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent)"> |
|
250 |
<summary>Send a POST request to the specified Uri as an asynchronous operation.</summary> |
|
251 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
252 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
253 |
<param name="content">The HTTP request content sent to the server.</param> |
|
254 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
255 |
</member> |
|
256 |
<member name="M:System.Net.Http.HttpClient.PostAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)"> |
|
257 |
<summary>Send a POST request with a cancellation token as an asynchronous operation.</summary> |
|
258 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
259 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
260 |
<param name="content">The HTTP request content sent to the server.</param> |
|
261 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
262 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
263 |
</member> |
|
264 |
<member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent)"> |
|
265 |
<summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary> |
|
266 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
267 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
268 |
<param name="content">The HTTP request content sent to the server.</param> |
|
269 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
270 |
</member> |
|
271 |
<member name="M:System.Net.Http.HttpClient.PutAsync(System.String,System.Net.Http.HttpContent,System.Threading.CancellationToken)"> |
|
272 |
<summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary> |
|
273 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
274 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
275 |
<param name="content">The HTTP request content sent to the server.</param> |
|
276 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
277 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
278 |
</member> |
|
279 |
<member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent)"> |
|
280 |
<summary>Send a PUT request to the specified Uri as an asynchronous operation.</summary> |
|
281 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
282 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
283 |
<param name="content">The HTTP request content sent to the server.</param> |
|
284 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
285 |
</member> |
|
286 |
<member name="M:System.Net.Http.HttpClient.PutAsync(System.Uri,System.Net.Http.HttpContent,System.Threading.CancellationToken)"> |
|
287 |
<summary>Send a PUT request with a cancellation token as an asynchronous operation.</summary> |
|
288 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
289 |
<param name="requestUri">The Uri the request is sent to.</param> |
|
290 |
<param name="content">The HTTP request content sent to the server.</param> |
|
291 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
292 |
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> was null.</exception> |
|
293 |
</member> |
|
294 |
<member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage)"> |
|
295 |
<summary>Send an HTTP request as an asynchronous operation.</summary> |
|
296 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
297 |
<param name="request">The HTTP request message to send.</param> |
|
298 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
299 |
<exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception> |
|
300 |
</member> |
|
301 |
<member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption)"> |
|
302 |
<summary>Send an HTTP request as an asynchronous operation. </summary> |
|
303 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
304 |
<param name="request">The HTTP request message to send.</param> |
|
305 |
<param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param> |
|
306 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
307 |
<exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception> |
|
308 |
</member> |
|
309 |
<member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Net.Http.HttpCompletionOption,System.Threading.CancellationToken)"> |
|
310 |
<summary>Send an HTTP request as an asynchronous operation.</summary> |
|
311 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
312 |
<param name="request">The HTTP request message to send.</param> |
|
313 |
<param name="completionOption">When the operation should complete (as soon as a response is available or after reading the whole response content).</param> |
|
314 |
<param name="cancellationToken">The cancellation token to cancel operation.</param> |
|
315 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
316 |
<exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception> |
|
317 |
</member> |
|
318 |
<member name="M:System.Net.Http.HttpClient.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
319 |
<summary>Send an HTTP request as an asynchronous operation.</summary> |
|
320 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
321 |
<param name="request">The HTTP request message to send.</param> |
|
322 |
<param name="cancellationToken">The cancellation token to cancel operation.</param> |
|
323 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
324 |
<exception cref="T:System.InvalidOperationException">The request message was already sent by the <see cref="T:System.Net.Http.HttpClient" /> instance.</exception> |
|
325 |
</member> |
|
326 |
<member name="P:System.Net.Http.HttpClient.Timeout"> |
|
327 |
<summary>Gets or sets the number of milliseconds to wait before the request times out.</summary> |
|
328 |
<returns>Returns <see cref="T:System.TimeSpan" />.The number of milliseconds to wait before the request times out.</returns> |
|
329 |
<exception cref="T:System.ArgumentOutOfRangeException">The timeout specified is less than or equal to zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception> |
|
330 |
<exception cref="T:System.InvalidOperationException">An operation has already been started on the current instance. </exception> |
|
331 |
<exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception> |
|
332 |
</member> |
|
333 |
<member name="T:System.Net.Http.HttpClientHandler"> |
|
334 |
<summary>The default message handler used by <see cref="T:System.Net.Http.HttpClient" />. </summary> |
|
335 |
</member> |
|
336 |
<member name="M:System.Net.Http.HttpClientHandler.#ctor"> |
|
337 |
<summary>Creates an instance of a <see cref="T:System.Net.Http.HttpClientHandler" /> class.</summary> |
|
338 |
</member> |
|
339 |
<member name="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect"> |
|
340 |
<summary>Gets or sets a value that indicates whether the handler should follow redirection responses.</summary> |
|
341 |
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler should follow redirection responses; otherwise false. The default value is true.</returns> |
|
342 |
</member> |
|
343 |
<member name="P:System.Net.Http.HttpClientHandler.AutomaticDecompression"> |
|
344 |
<summary>Gets or sets the type of decompression method used by the handler for automatic decompression of the HTTP content response.</summary> |
|
345 |
<returns>Returns <see cref="T:System.Net.DecompressionMethods" />.The automatic decompression method used by the handler. The default value is <see cref="F:System.Net.DecompressionMethods.None" />.</returns> |
|
346 |
</member> |
|
347 |
<member name="P:System.Net.Http.HttpClientHandler.ClientCertificateOptions"> |
|
348 |
<summary>Gets or sets the collection of security certificates that are associated with this handler.</summary> |
|
349 |
<returns>Returns <see cref="T:System.Net.Http.ClientCertificateOption" />.The collection of security certificates associated with this handler.</returns> |
|
350 |
</member> |
|
351 |
<member name="P:System.Net.Http.HttpClientHandler.CookieContainer"> |
|
352 |
<summary>Gets or sets the cookie container used to store server cookies by the handler.</summary> |
|
353 |
<returns>Returns <see cref="T:System.Net.CookieContainer" />.The cookie container used to store server cookies by the handler.</returns> |
|
354 |
</member> |
|
355 |
<member name="P:System.Net.Http.HttpClientHandler.Credentials"> |
|
356 |
<summary>Gets or sets authentication information used by this handler.</summary> |
|
357 |
<returns>Returns <see cref="T:System.Net.ICredentials" />.The authentication credentials associated with the handler. The default is null.</returns> |
|
358 |
</member> |
|
359 |
<member name="M:System.Net.Http.HttpClientHandler.Dispose(System.Boolean)"> |
|
360 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpClientHandler" /> and optionally disposes of the managed resources.</summary> |
|
361 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
362 |
</member> |
|
363 |
<member name="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections"> |
|
364 |
<summary>Gets or sets the maximum number of redirects that the handler follows.</summary> |
|
365 |
<returns>Returns <see cref="T:System.Int32" />.The maximum number of redirection responses that the handler follows. The default value is 50.</returns> |
|
366 |
</member> |
|
367 |
<member name="P:System.Net.Http.HttpClientHandler.MaxRequestContentBufferSize"> |
|
368 |
<summary>Gets or sets the maximum request content buffer size used by the handler.</summary> |
|
369 |
<returns>Returns <see cref="T:System.Int32" />.The maximum request content buffer size in bytes. The default value is 65,536 bytes.</returns> |
|
370 |
</member> |
|
371 |
<member name="P:System.Net.Http.HttpClientHandler.PreAuthenticate"> |
|
372 |
<summary>Gets or sets a value that indicates whether the handler sends an Authorization header with the request.</summary> |
|
373 |
<returns>Returns <see cref="T:System.Boolean" />.true for the handler to send an HTTP Authorization header with requests after authentication has taken place; otherwise, false. The default is false.</returns> |
|
374 |
</member> |
|
375 |
<member name="P:System.Net.Http.HttpClientHandler.Proxy"> |
|
376 |
<summary>Gets or sets proxy information used by the handler.</summary> |
|
377 |
<returns>Returns <see cref="T:System.Net.IWebProxy" />.The proxy information used by the handler. The default value is null.</returns> |
|
378 |
</member> |
|
379 |
<member name="M:System.Net.Http.HttpClientHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
380 |
<summary>Creates an instance of <see cref="T:System.Net.Http.HttpResponseMessage" /> based on the information provided in the <see cref="T:System.Net.Http.HttpRequestMessage" /> as an operation that will not block.</summary> |
|
381 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
382 |
<param name="request">The HTTP request message.</param> |
|
383 |
<param name="cancellationToken">A cancellation token to cancel the operation.</param> |
|
384 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
385 |
</member> |
|
386 |
<member name="P:System.Net.Http.HttpClientHandler.SupportsAutomaticDecompression"> |
|
387 |
<summary>Gets a value that indicates whether the handler supports automatic response content decompression.</summary> |
|
388 |
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports automatic response content decompression; otherwise false. The default value is true.</returns> |
|
389 |
</member> |
|
390 |
<member name="P:System.Net.Http.HttpClientHandler.SupportsProxy"> |
|
391 |
<summary>Gets a value that indicates whether the handler supports proxy settings.</summary> |
|
392 |
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports proxy settings; otherwise false. The default value is true.</returns> |
|
393 |
</member> |
|
394 |
<member name="P:System.Net.Http.HttpClientHandler.SupportsRedirectConfiguration"> |
|
395 |
<summary>Gets a value that indicates whether the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties.</summary> |
|
396 |
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports configuration settings for the <see cref="P:System.Net.Http.HttpClientHandler.AllowAutoRedirect" /> and <see cref="P:System.Net.Http.HttpClientHandler.MaxAutomaticRedirections" /> properties; otherwise false. The default value is true.</returns> |
|
397 |
</member> |
|
398 |
<member name="P:System.Net.Http.HttpClientHandler.UseCookies"> |
|
399 |
<summary>Gets or sets a value that indicates whether the handler uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests.</summary> |
|
400 |
<returns>Returns <see cref="T:System.Boolean" />.true if the if the handler supports uses the <see cref="P:System.Net.Http.HttpClientHandler.CookieContainer" /> property to store server cookies and uses these cookies when sending requests; otherwise false. The default value is true.</returns> |
|
401 |
</member> |
|
402 |
<member name="P:System.Net.Http.HttpClientHandler.UseDefaultCredentials"> |
|
403 |
<summary>Gets or sets a value that controls whether default credentials are sent with requests by the handler.</summary> |
|
404 |
<returns>Returns <see cref="T:System.Boolean" />.true if the default credentials are used; otherwise false. The default value is false.</returns> |
|
405 |
</member> |
|
406 |
<member name="P:System.Net.Http.HttpClientHandler.UseProxy"> |
|
407 |
<summary>Gets or sets a value that indicates whether the handler uses a proxy for requests. </summary> |
|
408 |
<returns>Returns <see cref="T:System.Boolean" />.true if the handler should use a proxy for requests; otherwise false. The default value is true.</returns> |
|
409 |
</member> |
|
410 |
<member name="T:System.Net.Http.HttpCompletionOption"> |
|
411 |
<summary>Indicates if <see cref="T:System.Net.Http.HttpClient" /> operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content. </summary> |
|
412 |
</member> |
|
413 |
<member name="F:System.Net.Http.HttpCompletionOption.ResponseContentRead"> |
|
414 |
<summary>The operation should complete after reading the entire response including the content.</summary> |
|
415 |
</member> |
|
416 |
<member name="F:System.Net.Http.HttpCompletionOption.ResponseHeadersRead"> |
|
417 |
<summary>The operation should complete as soon as a response is available and headers are read. The content is not read yet. </summary> |
|
418 |
</member> |
|
419 |
<member name="T:System.Net.Http.HttpContent"> |
|
420 |
<summary>A base class representing an HTTP entity body and content headers.</summary> |
|
421 |
</member> |
|
422 |
<member name="M:System.Net.Http.HttpContent.#ctor"> |
|
423 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpContent" /> class.</summary> |
|
424 |
</member> |
|
425 |
<member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream)"> |
|
426 |
<summary>Write the HTTP content to a stream as an asynchronous operation.</summary> |
|
427 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
428 |
<param name="stream">The target stream.</param> |
|
429 |
</member> |
|
430 |
<member name="M:System.Net.Http.HttpContent.CopyToAsync(System.IO.Stream,System.Net.TransportContext)"> |
|
431 |
<summary>Write the HTTP content to a stream as an asynchronous operation.</summary> |
|
432 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
433 |
<param name="stream">The target stream.</param> |
|
434 |
<param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param> |
|
435 |
</member> |
|
436 |
<member name="M:System.Net.Http.HttpContent.CreateContentReadStreamAsync"> |
|
437 |
<summary>Write the HTTP content to a memory stream as an asynchronous operation.</summary> |
|
438 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
439 |
</member> |
|
440 |
<member name="M:System.Net.Http.HttpContent.Dispose"> |
|
441 |
<summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpContent" />.</summary> |
|
442 |
</member> |
|
443 |
<member name="M:System.Net.Http.HttpContent.Dispose(System.Boolean)"> |
|
444 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpContent" /> and optionally disposes of the managed resources.</summary> |
|
445 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
446 |
</member> |
|
447 |
<member name="P:System.Net.Http.HttpContent.Headers"> |
|
448 |
<summary>Gets the HTTP content headers as defined in RFC 2616.</summary> |
|
449 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpContentHeaders" />.The content headers as defined in RFC 2616.</returns> |
|
450 |
</member> |
|
451 |
<member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync"> |
|
452 |
<summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary> |
|
453 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
454 |
</member> |
|
455 |
<member name="M:System.Net.Http.HttpContent.LoadIntoBufferAsync(System.Int64)"> |
|
456 |
<summary>Serialize the HTTP content to a memory buffer as an asynchronous operation.</summary> |
|
457 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
458 |
<param name="maxBufferSize">The maximum size, in bytes, of the buffer to use.</param> |
|
459 |
</member> |
|
460 |
<member name="M:System.Net.Http.HttpContent.ReadAsByteArrayAsync"> |
|
461 |
<summary>Write the HTTP content to a byte array as an asynchronous operation.</summary> |
|
462 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
463 |
</member> |
|
464 |
<member name="M:System.Net.Http.HttpContent.ReadAsStreamAsync"> |
|
465 |
<summary>Write the HTTP content to a stream as an asynchronous operation.</summary> |
|
466 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
467 |
</member> |
|
468 |
<member name="M:System.Net.Http.HttpContent.ReadAsStringAsync"> |
|
469 |
<summary>Write the HTTP content to a string as an asynchronous operation.</summary> |
|
470 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
471 |
</member> |
|
472 |
<member name="M:System.Net.Http.HttpContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)"> |
|
473 |
<summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary> |
|
474 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
475 |
<param name="stream">The target stream.</param> |
|
476 |
<param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param> |
|
477 |
</member> |
|
478 |
<member name="M:System.Net.Http.HttpContent.TryComputeLength(System.Int64@)"> |
|
479 |
<summary>Determines whether the HTTP content has a valid length in bytes.</summary> |
|
480 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns> |
|
481 |
<param name="length">The length in bytes of the HHTP content.</param> |
|
482 |
</member> |
|
483 |
<member name="T:System.Net.Http.HttpMessageHandler"> |
|
484 |
<summary>A base type for HTTP message handlers.</summary> |
|
485 |
</member> |
|
486 |
<member name="M:System.Net.Http.HttpMessageHandler.#ctor"> |
|
487 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageHandler" /> class.</summary> |
|
488 |
</member> |
|
489 |
<member name="M:System.Net.Http.HttpMessageHandler.Dispose"> |
|
490 |
<summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary> |
|
491 |
</member> |
|
492 |
<member name="M:System.Net.Http.HttpMessageHandler.Dispose(System.Boolean)"> |
|
493 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageHandler" /> and optionally disposes of the managed resources.</summary> |
|
494 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
495 |
</member> |
|
496 |
<member name="M:System.Net.Http.HttpMessageHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
497 |
<summary>Send an HTTP request as an asynchronous operation.</summary> |
|
498 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
499 |
<param name="request">The HTTP request message to send.</param> |
|
500 |
<param name="cancellationToken">The cancellation token to cancel operation.</param> |
|
501 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
502 |
</member> |
|
503 |
<member name="T:System.Net.Http.HttpMessageInvoker"> |
|
504 |
<summary>The base type for <see cref="T:System.Net.Http.HttpClient" /> and other message originators.</summary> |
|
505 |
</member> |
|
506 |
<member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler)"> |
|
507 |
<summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary> |
|
508 |
<param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param> |
|
509 |
</member> |
|
510 |
<member name="M:System.Net.Http.HttpMessageInvoker.#ctor(System.Net.Http.HttpMessageHandler,System.Boolean)"> |
|
511 |
<summary>Initializes an instance of a <see cref="T:System.Net.Http.HttpMessageInvoker" /> class with a specific <see cref="T:System.Net.Http.HttpMessageHandler" />.</summary> |
|
512 |
<param name="handler">The <see cref="T:System.Net.Http.HttpMessageHandler" /> responsible for processing the HTTP response messages.</param> |
|
513 |
<param name="disposeHandler">true if the inner handler should be disposed of by Dispose(),false if you intend to reuse the inner handler.</param> |
|
514 |
</member> |
|
515 |
<member name="M:System.Net.Http.HttpMessageInvoker.Dispose"> |
|
516 |
<summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" />.</summary> |
|
517 |
</member> |
|
518 |
<member name="M:System.Net.Http.HttpMessageInvoker.Dispose(System.Boolean)"> |
|
519 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpMessageInvoker" /> and optionally disposes of the managed resources.</summary> |
|
520 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
521 |
</member> |
|
522 |
<member name="M:System.Net.Http.HttpMessageInvoker.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
523 |
<summary>Send an HTTP request as an asynchronous operation.</summary> |
|
524 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
525 |
<param name="request">The HTTP request message to send.</param> |
|
526 |
<param name="cancellationToken">The cancellation token to cancel operation.</param> |
|
527 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
528 |
</member> |
|
529 |
<member name="T:System.Net.Http.HttpMethod"> |
|
530 |
<summary>A helper class for retrieving and comparing standard HTTP methods.</summary> |
|
531 |
</member> |
|
532 |
<member name="M:System.Net.Http.HttpMethod.#ctor(System.String)"> |
|
533 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpMethod" /> class with a specific HTTP method.</summary> |
|
534 |
<param name="method">The HTTP method.</param> |
|
535 |
</member> |
|
536 |
<member name="P:System.Net.Http.HttpMethod.Delete"> |
|
537 |
<summary>Represents an HTTP DELETE protocol method.</summary> |
|
538 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
539 |
</member> |
|
540 |
<member name="M:System.Net.Http.HttpMethod.Equals(System.Net.Http.HttpMethod)"> |
|
541 |
<summary>Determines whether the specified <see cref="T:System.Net.Http.HttpMethod" /> is equal to the current <see cref="T:System.Object" />.</summary> |
|
542 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns> |
|
543 |
<param name="other">The HTTP method to compare with the current object.</param> |
|
544 |
</member> |
|
545 |
<member name="M:System.Net.Http.HttpMethod.Equals(System.Object)"> |
|
546 |
<summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />.</summary> |
|
547 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified object is equal to the current object; otherwise, false.</returns> |
|
548 |
<param name="obj">The object to compare with the current object.</param> |
|
549 |
</member> |
|
550 |
<member name="P:System.Net.Http.HttpMethod.Get"> |
|
551 |
<summary>Represents an HTTP GET protocol method.</summary> |
|
552 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
553 |
</member> |
|
554 |
<member name="M:System.Net.Http.HttpMethod.GetHashCode"> |
|
555 |
<summary>Serves as a hash function for this type.</summary> |
|
556 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current <see cref="T:System.Object" />.</returns> |
|
557 |
</member> |
|
558 |
<member name="P:System.Net.Http.HttpMethod.Head"> |
|
559 |
<summary>Represents an HTTP HEAD protocol method. The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body.</summary> |
|
560 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
561 |
</member> |
|
562 |
<member name="P:System.Net.Http.HttpMethod.Method"> |
|
563 |
<summary>An HTTP method. </summary> |
|
564 |
<returns>Returns <see cref="T:System.String" />.An HTTP method represented as a <see cref="T:System.String" />.</returns> |
|
565 |
</member> |
|
566 |
<member name="M:System.Net.Http.HttpMethod.op_Equality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)"> |
|
567 |
<summary>The equality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary> |
|
568 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are equal; otherwise, false.</returns> |
|
569 |
<param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param> |
|
570 |
<param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an equality operator.</param> |
|
571 |
</member> |
|
572 |
<member name="M:System.Net.Http.HttpMethod.op_Inequality(System.Net.Http.HttpMethod,System.Net.Http.HttpMethod)"> |
|
573 |
<summary>The inequality operator for comparing two <see cref="T:System.Net.Http.HttpMethod" /> objects.</summary> |
|
574 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <paramref name="left" /> and <paramref name="right" /> parameters are inequal; otherwise, false.</returns> |
|
575 |
<param name="left">The left <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param> |
|
576 |
<param name="right">The right <see cref="T:System.Net.Http.HttpMethod" /> to an inequality operator.</param> |
|
577 |
</member> |
|
578 |
<member name="P:System.Net.Http.HttpMethod.Options"> |
|
579 |
<summary>Represents an HTTP OPTIONS protocol method.</summary> |
|
580 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
581 |
</member> |
|
582 |
<member name="P:System.Net.Http.HttpMethod.Post"> |
|
583 |
<summary>Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.</summary> |
|
584 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
585 |
</member> |
|
586 |
<member name="P:System.Net.Http.HttpMethod.Put"> |
|
587 |
<summary>Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.</summary> |
|
588 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
589 |
</member> |
|
590 |
<member name="M:System.Net.Http.HttpMethod.ToString"> |
|
591 |
<summary>Returns a string that represents the current object.</summary> |
|
592 |
<returns>Returns <see cref="T:System.String" />.A string representing the current object.</returns> |
|
593 |
</member> |
|
594 |
<member name="P:System.Net.Http.HttpMethod.Trace"> |
|
595 |
<summary>Represents an HTTP TRACE protocol method.</summary> |
|
596 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.</returns> |
|
597 |
</member> |
|
598 |
<member name="T:System.Net.Http.HttpRequestException"> |
|
599 |
<summary>A base class for exceptions thrown by the <see cref="T:System.Net.Http.HttpClient" /> and <see cref="T:System.Net.Http.HttpMessageHandler" /> classes.</summary> |
|
600 |
</member> |
|
601 |
<member name="M:System.Net.Http.HttpRequestException.#ctor"> |
|
602 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class.</summary> |
|
603 |
</member> |
|
604 |
<member name="M:System.Net.Http.HttpRequestException.#ctor(System.String)"> |
|
605 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception.</summary> |
|
606 |
<param name="message">A message that describes the current exception.</param> |
|
607 |
</member> |
|
608 |
<member name="M:System.Net.Http.HttpRequestException.#ctor(System.String,System.Exception)"> |
|
609 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestException" /> class with a specific message that describes the current exception and an inner exception.</summary> |
|
610 |
<param name="message">A message that describes the current exception.</param> |
|
611 |
<param name="inner">The inner exception.</param> |
|
612 |
</member> |
|
613 |
<member name="T:System.Net.Http.HttpRequestMessage"> |
|
614 |
<summary>Represents a HTTP request message.</summary> |
|
615 |
</member> |
|
616 |
<member name="M:System.Net.Http.HttpRequestMessage.#ctor"> |
|
617 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class.</summary> |
|
618 |
</member> |
|
619 |
<member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.String)"> |
|
620 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary> |
|
621 |
<param name="method">The HTTP method.</param> |
|
622 |
<param name="requestUri">A string that represents the request <see cref="T:System.Uri" />.</param> |
|
623 |
</member> |
|
624 |
<member name="M:System.Net.Http.HttpRequestMessage.#ctor(System.Net.Http.HttpMethod,System.Uri)"> |
|
625 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpRequestMessage" /> class with an HTTP method and a request <see cref="T:System.Uri" />.</summary> |
|
626 |
<param name="method">The HTTP method.</param> |
|
627 |
<param name="requestUri">The <see cref="T:System.Uri" /> to request.</param> |
|
628 |
</member> |
|
629 |
<member name="P:System.Net.Http.HttpRequestMessage.Content"> |
|
630 |
<summary>Gets or sets the contents of the HTTP message. </summary> |
|
631 |
<returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of a message</returns> |
|
632 |
</member> |
|
633 |
<member name="M:System.Net.Http.HttpRequestMessage.Dispose"> |
|
634 |
<summary>Releases the unmanaged resources and disposes of the managed resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" />.</summary> |
|
635 |
</member> |
|
636 |
<member name="M:System.Net.Http.HttpRequestMessage.Dispose(System.Boolean)"> |
|
637 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpRequestMessage" /> and optionally disposes of the managed resources.</summary> |
|
638 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
639 |
</member> |
|
640 |
<member name="P:System.Net.Http.HttpRequestMessage.Headers"> |
|
641 |
<summary>Gets the collection of HTTP request headers.</summary> |
|
642 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" />.The collection of HTTP request headers.</returns> |
|
643 |
</member> |
|
644 |
<member name="P:System.Net.Http.HttpRequestMessage.Method"> |
|
645 |
<summary>Gets or sets the HTTP method used by the HTTP request message.</summary> |
|
646 |
<returns>Returns <see cref="T:System.Net.Http.HttpMethod" />.The HTTP method used by the request message. The default is the GET method.</returns> |
|
647 |
</member> |
|
648 |
<member name="P:System.Net.Http.HttpRequestMessage.Properties"> |
|
649 |
<summary>Gets a set of properties for the HTTP request.</summary> |
|
650 |
<returns>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns> |
|
651 |
</member> |
|
652 |
<member name="P:System.Net.Http.HttpRequestMessage.RequestUri"> |
|
653 |
<summary>Gets or sets the <see cref="T:System.Uri" /> used for the HTTP request.</summary> |
|
654 |
<returns>Returns <see cref="T:System.Uri" />.The <see cref="T:System.Uri" /> used for the HTTP request.</returns> |
|
655 |
</member> |
|
656 |
<member name="M:System.Net.Http.HttpRequestMessage.ToString"> |
|
657 |
<summary>Returns a string that represents the current object.</summary> |
|
658 |
<returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns> |
|
659 |
</member> |
|
660 |
<member name="P:System.Net.Http.HttpRequestMessage.Version"> |
|
661 |
<summary>Gets or sets the HTTP message version.</summary> |
|
662 |
<returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1.</returns> |
|
663 |
</member> |
|
664 |
<member name="T:System.Net.Http.HttpResponseMessage"> |
|
665 |
<summary>Represents a HTTP response message.</summary> |
|
666 |
</member> |
|
667 |
<member name="M:System.Net.Http.HttpResponseMessage.#ctor"> |
|
668 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class.</summary> |
|
669 |
</member> |
|
670 |
<member name="M:System.Net.Http.HttpResponseMessage.#ctor(System.Net.HttpStatusCode)"> |
|
671 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.HttpResponseMessage" /> class with a specific <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" />.</summary> |
|
672 |
<param name="statusCode">The status code of the HTTP response.</param> |
|
673 |
</member> |
|
674 |
<member name="P:System.Net.Http.HttpResponseMessage.Content"> |
|
675 |
<summary>Gets or sets the content of a HTTP response message. </summary> |
|
676 |
<returns>Returns <see cref="T:System.Net.Http.HttpContent" />.The content of the HTTP response message.</returns> |
|
677 |
</member> |
|
678 |
<member name="M:System.Net.Http.HttpResponseMessage.Dispose"> |
|
679 |
<summary>Releases the unmanaged resources and disposes of unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" />.</summary> |
|
680 |
</member> |
|
681 |
<member name="M:System.Net.Http.HttpResponseMessage.Dispose(System.Boolean)"> |
|
682 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.HttpResponseMessage" /> and optionally disposes of the managed resources.</summary> |
|
683 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
684 |
</member> |
|
685 |
<member name="M:System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode"> |
|
686 |
<summary>Throws an exception if the <see cref="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode" /> property for the HTTP response is false.</summary> |
|
687 |
<returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message if the call is successful.</returns> |
|
688 |
</member> |
|
689 |
<member name="P:System.Net.Http.HttpResponseMessage.Headers"> |
|
690 |
<summary>Gets the collection of HTTP response headers. </summary> |
|
691 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpResponseHeaders" />.The collection of HTTP response headers.</returns> |
|
692 |
</member> |
|
693 |
<member name="P:System.Net.Http.HttpResponseMessage.IsSuccessStatusCode"> |
|
694 |
<summary>Gets a value that indicates if the HTTP response was successful.</summary> |
|
695 |
<returns>Returns <see cref="T:System.Boolean" />.A value that indicates if the HTTP response was successful. true if <see cref="P:System.Net.Http.HttpResponseMessage.StatusCode" /> was in the range 200-299; otherwise false.</returns> |
|
696 |
</member> |
|
697 |
<member name="P:System.Net.Http.HttpResponseMessage.ReasonPhrase"> |
|
698 |
<summary>Gets or sets the reason phrase which typically is sent by servers together with the status code. </summary> |
|
699 |
<returns>Returns <see cref="T:System.String" />.The reason phrase sent by the server.</returns> |
|
700 |
</member> |
|
701 |
<member name="P:System.Net.Http.HttpResponseMessage.RequestMessage"> |
|
702 |
<summary>Gets or sets the request message which led to this response message.</summary> |
|
703 |
<returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The request message which led to this response message.</returns> |
|
704 |
</member> |
|
705 |
<member name="P:System.Net.Http.HttpResponseMessage.StatusCode"> |
|
706 |
<summary>Gets or sets the status code of the HTTP response.</summary> |
|
707 |
<returns>Returns <see cref="T:System.Net.HttpStatusCode" />.The status code of the HTTP response.</returns> |
|
708 |
</member> |
|
709 |
<member name="M:System.Net.Http.HttpResponseMessage.ToString"> |
|
710 |
<summary>Returns a string that represents the current object.</summary> |
|
711 |
<returns>Returns <see cref="T:System.String" />.A string representation of the current object.</returns> |
|
712 |
</member> |
|
713 |
<member name="P:System.Net.Http.HttpResponseMessage.Version"> |
|
714 |
<summary>Gets or sets the HTTP message version. </summary> |
|
715 |
<returns>Returns <see cref="T:System.Version" />.The HTTP message version. The default is 1.1. </returns> |
|
716 |
</member> |
|
717 |
<member name="T:System.Net.Http.MessageProcessingHandler"> |
|
718 |
<summary>A base type for handlers which only do some small processing of request and/or response messages.</summary> |
|
719 |
</member> |
|
720 |
<member name="M:System.Net.Http.MessageProcessingHandler.#ctor"> |
|
721 |
<summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class.</summary> |
|
722 |
</member> |
|
723 |
<member name="M:System.Net.Http.MessageProcessingHandler.#ctor(System.Net.Http.HttpMessageHandler)"> |
|
724 |
<summary>Creates an instance of a <see cref="T:System.Net.Http.MessageProcessingHandler" /> class with a specific inner handler.</summary> |
|
725 |
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param> |
|
726 |
</member> |
|
727 |
<member name="M:System.Net.Http.MessageProcessingHandler.ProcessRequest(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
728 |
<summary>Processes an HTTP request message.</summary> |
|
729 |
<returns>Returns <see cref="T:System.Net.Http.HttpRequestMessage" />.The HTTP request message that was processed.</returns> |
|
730 |
<param name="request">The HTTP request message to process.</param> |
|
731 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
732 |
</member> |
|
733 |
<member name="M:System.Net.Http.MessageProcessingHandler.ProcessResponse(System.Net.Http.HttpResponseMessage,System.Threading.CancellationToken)"> |
|
734 |
<summary>Processes an HTTP response message.</summary> |
|
735 |
<returns>Returns <see cref="T:System.Net.Http.HttpResponseMessage" />.The HTTP response message that was processed.</returns> |
|
736 |
<param name="response">The HTTP response message to process.</param> |
|
737 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
738 |
</member> |
|
739 |
<member name="M:System.Net.Http.MessageProcessingHandler.SendAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> |
|
740 |
<summary>Sends an HTTP request to the inner handler to send to the server as an asynchronous operation.</summary> |
|
741 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
742 |
<param name="request">The HTTP request message to send to the server.</param> |
|
743 |
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param> |
|
744 |
<exception cref="T:System.ArgumentNullException">The <paramref name="request" /> was null.</exception> |
|
745 |
</member> |
|
746 |
<member name="T:System.Net.Http.MultipartContent"> |
|
747 |
<summary>Provides a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary> |
|
748 |
</member> |
|
749 |
<member name="M:System.Net.Http.MultipartContent.#ctor"> |
|
750 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary> |
|
751 |
</member> |
|
752 |
<member name="M:System.Net.Http.MultipartContent.#ctor(System.String)"> |
|
753 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary> |
|
754 |
<param name="subtype">The subtype of the multipart content.</param> |
|
755 |
<exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or contains only white space characters.</exception> |
|
756 |
</member> |
|
757 |
<member name="M:System.Net.Http.MultipartContent.#ctor(System.String,System.String)"> |
|
758 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartContent" /> class.</summary> |
|
759 |
<param name="subtype">The subtype of the multipart content.</param> |
|
760 |
<param name="boundary">The boundary string for the multipart content.</param> |
|
761 |
<exception cref="T:System.ArgumentException">The <paramref name="subtype" /> was null or an empty string.The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception> |
|
762 |
<exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception> |
|
763 |
</member> |
|
764 |
<member name="M:System.Net.Http.MultipartContent.Add(System.Net.Http.HttpContent)"> |
|
765 |
<summary>Add multipart HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification.</summary> |
|
766 |
<param name="content">The HTTP content to add to the collection.</param> |
|
767 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception> |
|
768 |
</member> |
|
769 |
<member name="M:System.Net.Http.MultipartContent.Dispose(System.Boolean)"> |
|
770 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.MultipartContent" /> and optionally disposes of the managed resources.</summary> |
|
771 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
772 |
</member> |
|
773 |
<member name="M:System.Net.Http.MultipartContent.GetEnumerator"> |
|
774 |
<summary>Returns an enumerator that iterates through the collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized using the multipart/* content type specification..</summary> |
|
775 |
<returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An object that can be used to iterate through the collection.</returns> |
|
776 |
</member> |
|
777 |
<member name="M:System.Net.Http.MultipartContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)"> |
|
778 |
<summary>Serialize the multipart HTTP content to a stream as an asynchronous operation.</summary> |
|
779 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
780 |
<param name="stream">The target stream.</param> |
|
781 |
<param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param> |
|
782 |
</member> |
|
783 |
<member name="M:System.Net.Http.MultipartContent.System#Collections#IEnumerable#GetEnumerator"> |
|
784 |
<summary>The explicit implementation of the <see cref="M:System.Net.Http.MultipartContent.GetEnumerator" /> method.</summary> |
|
785 |
<returns>Returns <see cref="T:System.Collections.IEnumerator" />.An object that can be used to iterate through the collection.</returns> |
|
786 |
</member> |
|
787 |
<member name="M:System.Net.Http.MultipartContent.TryComputeLength(System.Int64@)"> |
|
788 |
<summary>Determines whether the HTTP multipart content has a valid length in bytes.</summary> |
|
789 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns> |
|
790 |
<param name="length">The length in bytes of the HHTP content.</param> |
|
791 |
</member> |
|
792 |
<member name="T:System.Net.Http.MultipartFormDataContent"> |
|
793 |
<summary>Provides a container for content encoded using multipart/form-data MIME type.</summary> |
|
794 |
</member> |
|
795 |
<member name="M:System.Net.Http.MultipartFormDataContent.#ctor"> |
|
796 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary> |
|
797 |
</member> |
|
798 |
<member name="M:System.Net.Http.MultipartFormDataContent.#ctor(System.String)"> |
|
799 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.MultipartFormDataContent" /> class.</summary> |
|
800 |
<param name="boundary">The boundary string for the multipart form data content.</param> |
|
801 |
<exception cref="T:System.ArgumentException">The <paramref name="boundary" /> was null or contains only white space characters.-or-The <paramref name="boundary" /> ends with a space character.</exception> |
|
802 |
<exception cref="T:System.OutOfRangeException">The length of the <paramref name="boundary" /> was greater than 70.</exception> |
|
803 |
</member> |
|
804 |
<member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent)"> |
|
805 |
<summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary> |
|
806 |
<param name="content">The HTTP content to add to the collection.</param> |
|
807 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception> |
|
808 |
</member> |
|
809 |
<member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String)"> |
|
810 |
<summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary> |
|
811 |
<param name="content">The HTTP content to add to the collection.</param> |
|
812 |
<param name="name">The name for the HTTP content to add.</param> |
|
813 |
<exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.</exception> |
|
814 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception> |
|
815 |
</member> |
|
816 |
<member name="M:System.Net.Http.MultipartFormDataContent.Add(System.Net.Http.HttpContent,System.String,System.String)"> |
|
817 |
<summary>Add HTTP content to a collection of <see cref="T:System.Net.Http.HttpContent" /> objects that get serialized to multipart/form-data MIME type.</summary> |
|
818 |
<param name="content">The HTTP content to add to the collection.</param> |
|
819 |
<param name="name">The name for the HTTP content to add.</param> |
|
820 |
<param name="fileName">The file name for the HTTP content to add to the collection.</param> |
|
821 |
<exception cref="T:System.ArgumentException">The <paramref name="name" /> was null or contains only white space characters.-or-The <paramref name="fileName" /> was null or contains only white space characters.</exception> |
|
822 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception> |
|
823 |
</member> |
|
824 |
<member name="T:System.Net.Http.StreamContent"> |
|
825 |
<summary>Provides HTTP content based on a stream.</summary> |
|
826 |
</member> |
|
827 |
<member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream)"> |
|
828 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary> |
|
829 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param> |
|
830 |
</member> |
|
831 |
<member name="M:System.Net.Http.StreamContent.#ctor(System.IO.Stream,System.Int32)"> |
|
832 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StreamContent" /> class.</summary> |
|
833 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StreamContent" />.</param> |
|
834 |
<param name="bufferSize">The size, in bytes, of the buffer for the <see cref="T:System.Net.Http.StreamContent" />.</param> |
|
835 |
<exception cref="T:System.ArgumentNullException">The <paramref name="content" /> was null.</exception> |
|
836 |
<exception cref="T:System.OutOfRangeException">The <paramref name="bufferSize" /> was less than or equal to zero. </exception> |
|
837 |
</member> |
|
838 |
<member name="M:System.Net.Http.StreamContent.CreateContentReadStreamAsync"> |
|
839 |
<summary>Write the HTTP stream content to a memory stream as an asynchronous operation.</summary> |
|
840 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task`1" />.The task object representing the asynchronous operation.</returns> |
|
841 |
</member> |
|
842 |
<member name="M:System.Net.Http.StreamContent.Dispose(System.Boolean)"> |
|
843 |
<summary>Releases the unmanaged resources used by the <see cref="T:System.Net.Http.StreamContent" /> and optionally disposes of the managed resources.</summary> |
|
844 |
<param name="disposing">true to release both managed and unmanaged resources; false to releases only unmanaged resources.</param> |
|
845 |
</member> |
|
846 |
<member name="M:System.Net.Http.StreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)"> |
|
847 |
<summary>Serialize the HTTP content to a stream as an asynchronous operation.</summary> |
|
848 |
<returns>Returns <see cref="T:System.Threading.Tasks.Task" />.The task object representing the asynchronous operation.</returns> |
|
849 |
<param name="stream">The target stream.</param> |
|
850 |
<param name="context">Information about the transport (channel binding token, for example). This parameter may be null.</param> |
|
851 |
</member> |
|
852 |
<member name="M:System.Net.Http.StreamContent.TryComputeLength(System.Int64@)"> |
|
853 |
<summary>Determines whether the stream content has a valid length in bytes.</summary> |
|
854 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="length" /> is a valid length; otherwise, false.</returns> |
|
855 |
<param name="length">The length in bytes of the stream content.</param> |
|
856 |
</member> |
|
857 |
<member name="T:System.Net.Http.StringContent"> |
|
858 |
<summary>Provides HTTP content based on a string.</summary> |
|
859 |
</member> |
|
860 |
<member name="M:System.Net.Http.StringContent.#ctor(System.String)"> |
|
861 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary> |
|
862 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param> |
|
863 |
</member> |
|
864 |
<member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding)"> |
|
865 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary> |
|
866 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param> |
|
867 |
<param name="encoding">The encoding to use for the content.</param> |
|
868 |
</member> |
|
869 |
<member name="M:System.Net.Http.StringContent.#ctor(System.String,System.Text.Encoding,System.String)"> |
|
870 |
<summary>Creates a new instance of the <see cref="T:System.Net.Http.StringContent" /> class.</summary> |
|
871 |
<param name="content">The content used to initialize the <see cref="T:System.Net.Http.StringContent" />.</param> |
|
872 |
<param name="encoding">The encoding to use for the content.</param> |
|
873 |
<param name="mediaType">The media type to use for the content.</param> |
|
874 |
</member> |
|
875 |
<member name="T:System.Net.Http.Headers.AuthenticationHeaderValue"> |
|
876 |
<summary>Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.</summary> |
|
877 |
</member> |
|
878 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String)"> |
|
879 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary> |
|
880 |
<param name="scheme">The scheme to use for authorization.</param> |
|
881 |
</member> |
|
882 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.#ctor(System.String,System.String)"> |
|
883 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> class.</summary> |
|
884 |
<param name="scheme">The scheme to use for authorization.</param> |
|
885 |
<param name="parameter">The credentials containing the authentication information of the user agent for the resource being requested.</param> |
|
886 |
</member> |
|
887 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Equals(System.Object)"> |
|
888 |
<summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary> |
|
889 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns> |
|
890 |
<param name="obj">The object to compare with the current object. </param> |
|
891 |
</member> |
|
892 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.GetHashCode"> |
|
893 |
<summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary> |
|
894 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns> |
|
895 |
</member> |
|
896 |
<member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Parameter"> |
|
897 |
<summary>Gets the credentials containing the authentication information of the user agent for the resource being requested.</summary> |
|
898 |
<returns>Returns <see cref="T:System.String" />.The credentials containing the authentication information.</returns> |
|
899 |
</member> |
|
900 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.Parse(System.String)"> |
|
901 |
<summary>Converts a string to an <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</summary> |
|
902 |
<returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.An <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</returns> |
|
903 |
<param name="input">A string that represents authentication header value information.</param> |
|
904 |
<exception cref="T:System.ArgumentNullException"> |
|
905 |
<paramref name="input" /> is a null reference.</exception> |
|
906 |
<exception cref="T:System.FormatException"> |
|
907 |
<paramref name="input" /> is not valid authentication header value information.</exception> |
|
908 |
</member> |
|
909 |
<member name="P:System.Net.Http.Headers.AuthenticationHeaderValue.Scheme"> |
|
910 |
<summary>Gets the scheme to use for authorization.</summary> |
|
911 |
<returns>Returns <see cref="T:System.String" />.The scheme to use for authorization.</returns> |
|
912 |
</member> |
|
913 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.System#ICloneable#Clone"> |
|
914 |
<summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> instance.</summary> |
|
915 |
<returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns> |
|
916 |
</member> |
|
917 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.ToString"> |
|
918 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> object.</summary> |
|
919 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
920 |
</member> |
|
921 |
<member name="M:System.Net.Http.Headers.AuthenticationHeaderValue.TryParse(System.String,System.Net.Http.Headers.AuthenticationHeaderValue@)"> |
|
922 |
<summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information.</summary> |
|
923 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> information; otherwise, false.</returns> |
|
924 |
<param name="input">The string to validate.</param> |
|
925 |
<param name="parsedValue">The <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" /> version of the string.</param> |
|
926 |
</member> |
|
927 |
<member name="T:System.Net.Http.Headers.CacheControlHeaderValue"> |
|
928 |
<summary>Represents the value of the Cache-Control header.</summary> |
|
929 |
</member> |
|
930 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.#ctor"> |
|
931 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> class.</summary> |
|
932 |
</member> |
|
933 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Equals(System.Object)"> |
|
934 |
<summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary> |
|
935 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns> |
|
936 |
<param name="obj">The object to compare with the current object.</param> |
|
937 |
</member> |
|
938 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Extensions"> |
|
939 |
<summary>Cache-extension tokens, each with an optional assigned value.</summary> |
|
940 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of cache-extension tokens each with an optional assigned value.</returns> |
|
941 |
</member> |
|
942 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.GetHashCode"> |
|
943 |
<summary>Serves as a hash function for a <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary> |
|
944 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns> |
|
945 |
</member> |
|
946 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxAge"> |
|
947 |
<summary>The maximum age, specified in seconds, that the HTTP client is willing to accept a response. </summary> |
|
948 |
<returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds. </returns> |
|
949 |
</member> |
|
950 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStale"> |
|
951 |
<summary>Whether an HTTP client is willing to accept a response that has exceeded its expiration time.</summary> |
|
952 |
<returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a response that has exceed the expiration time; otherwise, false.</returns> |
|
953 |
</member> |
|
954 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MaxStaleLimit"> |
|
955 |
<summary>The maximum time, in seconds, an HTTP client is willing to accept a response that has exceeded its expiration time.</summary> |
|
956 |
<returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns> |
|
957 |
</member> |
|
958 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MinFresh"> |
|
959 |
<summary>The freshness lifetime, in seconds, that an HTTP client is willing to accept a response.</summary> |
|
960 |
<returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns> |
|
961 |
</member> |
|
962 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.MustRevalidate"> |
|
963 |
<summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale.</summary> |
|
964 |
<returns>Returns <see cref="T:System.Boolean" />.true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale; otherwise, false.</returns> |
|
965 |
</member> |
|
966 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCache"> |
|
967 |
<summary>Whether an HTTP client is willing to accept a cached response.</summary> |
|
968 |
<returns>Returns <see cref="T:System.Boolean" />.true if the HTTP client is willing to accept a cached response; otherwise, false.</returns> |
|
969 |
</member> |
|
970 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoCacheHeaders"> |
|
971 |
<summary>A collection of fieldnames in the "no-cache" directive in a cache-control header field on an HTTP response.</summary> |
|
972 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns> |
|
973 |
</member> |
|
974 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoStore"> |
|
975 |
<summary>Whether a cache must not store any part of either the HTTP request mressage or any response.</summary> |
|
976 |
<returns>Returns <see cref="T:System.Boolean" />.true if a cache must not store any part of either the HTTP request mressage or any response; otherwise, false.</returns> |
|
977 |
</member> |
|
978 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.NoTransform"> |
|
979 |
<summary>Whether a cache or proxy must not change any aspect of the entity-body.</summary> |
|
980 |
<returns>Returns <see cref="T:System.Boolean" />.true if a cache or proxy must not change any aspect of the entity-body; otherwise, false.</returns> |
|
981 |
</member> |
|
982 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.OnlyIfCached"> |
|
983 |
<summary>Whether a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status.</summary> |
|
984 |
<returns>Returns <see cref="T:System.Boolean" />.true if a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status; otherwise, false.</returns> |
|
985 |
</member> |
|
986 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.Parse(System.String)"> |
|
987 |
<summary>Converts a string to an <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</summary> |
|
988 |
<returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.A <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</returns> |
|
989 |
<param name="input">A string that represents cache-control header value information.</param> |
|
990 |
<exception cref="T:System.ArgumentNullException"> |
|
991 |
<paramref name="input" /> is a null reference.</exception> |
|
992 |
<exception cref="T:System.FormatException"> |
|
993 |
<paramref name="input" /> is not valid cache-control header value information.</exception> |
|
994 |
</member> |
|
995 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Private"> |
|
996 |
<summary>Whether all or part of the HTTP response message is intended for a single user and must not be cached by a shared cache.</summary> |
|
997 |
<returns>Returns <see cref="T:System.Boolean" />.true if the HTTP response message is intended for a single user and must not be cached by a shared cache; otherwise, false.</returns> |
|
998 |
</member> |
|
999 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.PrivateHeaders"> |
|
1000 |
<summary>A collection fieldnames in the "private" directive in a cache-control header field on an HTTP response.</summary> |
|
1001 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of fieldnames.</returns> |
|
1002 |
</member> |
|
1003 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.ProxyRevalidate"> |
|
1004 |
<summary>Whether the origin server require revalidation of a cache entry on any subsequent use when the cache entry becomes stale for shared user agent caches.</summary> |
|
1005 |
<returns>Returns <see cref="T:System.Boolean" />.true if the origin server requires revalidation of a cache entry on any subsequent use when the entry becomes stale for shared user agent caches; otherwise, false.</returns> |
|
1006 |
</member> |
|
1007 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.Public"> |
|
1008 |
<summary>Whether an HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache.</summary> |
|
1009 |
<returns>Returns <see cref="T:System.Boolean" />.true if the HTTP response may be cached by any cache, even if it would normally be non-cacheable or cacheable only within a non- shared cache; otherwise, false.</returns> |
|
1010 |
</member> |
|
1011 |
<member name="P:System.Net.Http.Headers.CacheControlHeaderValue.SharedMaxAge"> |
|
1012 |
<summary>The shared maximum age, specified in seconds, in an HTTP response that overrides the "max-age" directive in a cache-control header or an Expires header for a shared cache.</summary> |
|
1013 |
<returns>Returns <see cref="T:System.TimeSpan" />.The time in seconds.</returns> |
|
1014 |
</member> |
|
1015 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.System#ICloneable#Clone"> |
|
1016 |
<summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> instance.</summary> |
|
1017 |
<returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns> |
|
1018 |
</member> |
|
1019 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.ToString"> |
|
1020 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> object.</summary> |
|
1021 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1022 |
</member> |
|
1023 |
<member name="M:System.Net.Http.Headers.CacheControlHeaderValue.TryParse(System.String,System.Net.Http.Headers.CacheControlHeaderValue@)"> |
|
1024 |
<summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information.</summary> |
|
1025 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> information; otherwise, false.</returns> |
|
1026 |
<param name="input">The string to validate.</param> |
|
1027 |
<param name="parsedValue">The <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" /> version of the string.</param> |
|
1028 |
</member> |
|
1029 |
<member name="T:System.Net.Http.Headers.ContentDispositionHeaderValue"> |
|
1030 |
<summary>Represents the value of the Content-Disposition header.</summary> |
|
1031 |
</member> |
|
1032 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.Net.Http.Headers.ContentDispositionHeaderValue)"> |
|
1033 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary> |
|
1034 |
<param name="source">A <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />. </param> |
|
1035 |
</member> |
|
1036 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.#ctor(System.String)"> |
|
1037 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> class.</summary> |
|
1038 |
<param name="dispositionType">A string that contains a <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.</param> |
|
1039 |
</member> |
|
1040 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.CreationDate"> |
|
1041 |
<summary>The date at which the file was created.</summary> |
|
1042 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The file creation date.</returns> |
|
1043 |
</member> |
|
1044 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.DispositionType"> |
|
1045 |
<summary>The disposition type for a content body part.</summary> |
|
1046 |
<returns>Returns <see cref="T:System.String" />.The disposition type. </returns> |
|
1047 |
</member> |
|
1048 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Equals(System.Object)"> |
|
1049 |
<summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary> |
|
1050 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns> |
|
1051 |
<param name="obj">The object to compare with the current object.</param> |
|
1052 |
</member> |
|
1053 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileName"> |
|
1054 |
<summary>A suggestion for how to construct a filename for storing the message payload to be used if the entity is detached and stored in a separate file.</summary> |
|
1055 |
<returns>Returns <see cref="T:System.String" />.A suggested filename.</returns> |
|
1056 |
</member> |
|
1057 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.FileNameStar"> |
|
1058 |
<summary>A suggestion for how to construct filenames for storing message payloads to be used if the entities are detached and stored in a separate files.</summary> |
|
1059 |
<returns>Returns <see cref="T:System.String" />.A suggested filename of the form filename*.</returns> |
|
1060 |
</member> |
|
1061 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.GetHashCode"> |
|
1062 |
<summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary> |
|
1063 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns> |
|
1064 |
</member> |
|
1065 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ModificationDate"> |
|
1066 |
<summary>The date at which the file was last modified. </summary> |
|
1067 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The file modification date.</returns> |
|
1068 |
</member> |
|
1069 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Name"> |
|
1070 |
<summary>The name for a content body part.</summary> |
|
1071 |
<returns>Returns <see cref="T:System.String" />.The name for the content body part.</returns> |
|
1072 |
</member> |
|
1073 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Parameters"> |
|
1074 |
<summary>A set of parameters included the Content-Disposition header.</summary> |
|
1075 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.A collection of parameters. </returns> |
|
1076 |
</member> |
|
1077 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.Parse(System.String)"> |
|
1078 |
<summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</summary> |
|
1079 |
<returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</returns> |
|
1080 |
<param name="input">A string that represents content disposition header value information.</param> |
|
1081 |
<exception cref="T:System.ArgumentNullException"> |
|
1082 |
<paramref name="input" /> is a null reference.</exception> |
|
1083 |
<exception cref="T:System.FormatException"> |
|
1084 |
<paramref name="input" /> is not valid content disposition header value information.</exception> |
|
1085 |
</member> |
|
1086 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.ReadDate"> |
|
1087 |
<summary>The date the file was last read.</summary> |
|
1088 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The last read date.</returns> |
|
1089 |
</member> |
|
1090 |
<member name="P:System.Net.Http.Headers.ContentDispositionHeaderValue.Size"> |
|
1091 |
<summary>The approximate size, in bytes, of the file. </summary> |
|
1092 |
<returns>Returns <see cref="T:System.Int64" />.The approximate size, in bytes.</returns> |
|
1093 |
</member> |
|
1094 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.System#ICloneable#Clone"> |
|
1095 |
<summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> instance.</summary> |
|
1096 |
<returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns> |
|
1097 |
</member> |
|
1098 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.ToString"> |
|
1099 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> object.</summary> |
|
1100 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1101 |
</member> |
|
1102 |
<member name="M:System.Net.Http.Headers.ContentDispositionHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentDispositionHeaderValue@)"> |
|
1103 |
<summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information.</summary> |
|
1104 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> information; otherwise, false.</returns> |
|
1105 |
<param name="input">The string to validate.</param> |
|
1106 |
<param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" /> version of the string.</param> |
|
1107 |
</member> |
|
1108 |
<member name="T:System.Net.Http.Headers.ContentRangeHeaderValue"> |
|
1109 |
<summary>Represents the value of the Content-Range header.</summary> |
|
1110 |
</member> |
|
1111 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64)"> |
|
1112 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary> |
|
1113 |
<param name="length">The starting or ending point of the range, in bytes.</param> |
|
1114 |
</member> |
|
1115 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64)"> |
|
1116 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary> |
|
1117 |
<param name="from">The position, in bytes, at which to start sending data.</param> |
|
1118 |
<param name="to">The position, in bytes, at which to stop sending data.</param> |
|
1119 |
</member> |
|
1120 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.#ctor(System.Int64,System.Int64,System.Int64)"> |
|
1121 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> class.</summary> |
|
1122 |
<param name="from">The position, in bytes, at which to start sending data.</param> |
|
1123 |
<param name="to">The position, in bytes, at which to stop sending data.</param> |
|
1124 |
<param name="length">The starting or ending point of the range, in bytes.</param> |
|
1125 |
</member> |
|
1126 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Equals(System.Object)"> |
|
1127 |
<summary>Determines whether the specified Object is equal to the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary> |
|
1128 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns> |
|
1129 |
<param name="obj">The object to compare with the current object.</param> |
|
1130 |
</member> |
|
1131 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.From"> |
|
1132 |
<summary>Gets the position at which to start sending data.</summary> |
|
1133 |
<returns>Returns <see cref="T:System.Int64" />.The position, in bytes, at which to start sending data.</returns> |
|
1134 |
</member> |
|
1135 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.GetHashCode"> |
|
1136 |
<summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary> |
|
1137 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns> |
|
1138 |
</member> |
|
1139 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasLength"> |
|
1140 |
<summary>Gets whether the Content-Range header has a length specified.</summary> |
|
1141 |
<returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a length specified; otherwise, false.</returns> |
|
1142 |
</member> |
|
1143 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.HasRange"> |
|
1144 |
<summary>Gets whether the Content-Range has a range specified. </summary> |
|
1145 |
<returns>Returns <see cref="T:System.Boolean" />.true if the Content-Range has a range specified; otherwise, false.</returns> |
|
1146 |
</member> |
|
1147 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Length"> |
|
1148 |
<summary>Gets the length of the full entity-body.</summary> |
|
1149 |
<returns>Returns <see cref="T:System.Int64" />.The length of the full entity-body.</returns> |
|
1150 |
</member> |
|
1151 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.Parse(System.String)"> |
|
1152 |
<summary>Converts a string to an <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</summary> |
|
1153 |
<returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.An <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</returns> |
|
1154 |
<param name="input">A string that represents content range header value information.</param> |
|
1155 |
<exception cref="T:System.ArgumentNullException"> |
|
1156 |
<paramref name="input" /> is a null reference.</exception> |
|
1157 |
<exception cref="T:System.FormatException"> |
|
1158 |
<paramref name="input" /> is not valid content range header value information.</exception> |
|
1159 |
</member> |
|
1160 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.System#ICloneable#Clone"> |
|
1161 |
<summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> instance.</summary> |
|
1162 |
<returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns> |
|
1163 |
</member> |
|
1164 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.To"> |
|
1165 |
<summary>Gets the position at which to stop sending data.</summary> |
|
1166 |
<returns>Returns <see cref="T:System.Int64" />.The position at which to stop sending data.</returns> |
|
1167 |
</member> |
|
1168 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.ToString"> |
|
1169 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> object.</summary> |
|
1170 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1171 |
</member> |
|
1172 |
<member name="M:System.Net.Http.Headers.ContentRangeHeaderValue.TryParse(System.String,System.Net.Http.Headers.ContentRangeHeaderValue@)"> |
|
1173 |
<summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information.</summary> |
|
1174 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> information; otherwise, false.</returns> |
|
1175 |
<param name="input">The string to validate.</param> |
|
1176 |
<param name="parsedValue">The <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" /> version of the string.</param> |
|
1177 |
</member> |
|
1178 |
<member name="P:System.Net.Http.Headers.ContentRangeHeaderValue.Unit"> |
|
1179 |
<summary>The range units used.</summary> |
|
1180 |
<returns>Returns <see cref="T:System.String" />.A <see cref="T:System.String" /> that contains range units. </returns> |
|
1181 |
</member> |
|
1182 |
<member name="T:System.Net.Http.Headers.EntityTagHeaderValue"> |
|
1183 |
<summary>Represents an entity-tag header value.</summary> |
|
1184 |
</member> |
|
1185 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String)"> |
|
1186 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary> |
|
1187 |
<param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param> |
|
1188 |
</member> |
|
1189 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.#ctor(System.String,System.Boolean)"> |
|
1190 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> class.</summary> |
|
1191 |
<param name="tag">A string that contains an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</param> |
|
1192 |
<param name="isWeak">A value that indicates if this entity-tag header is a weak validator. If the entity-tag header is weak validator, then <paramref name="isWeak" /> should be set to true. If the entity-tag header is a strong validator, then <paramref name="isWeak" /> should be set to false.</param> |
|
1193 |
</member> |
|
1194 |
<member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Any"> |
|
1195 |
<summary>Gets the entity-tag header value.</summary> |
|
1196 |
<returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.</returns> |
|
1197 |
</member> |
|
1198 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Equals(System.Object)"> |
|
1199 |
<summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary> |
|
1200 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified <see cref="T:System.Object" /> is equal to the current object; otherwise, false.</returns> |
|
1201 |
<param name="obj">The object to compare with the current object.</param> |
|
1202 |
</member> |
|
1203 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.GetHashCode"> |
|
1204 |
<summary>Serves as a hash function for an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary> |
|
1205 |
<returns>Returns <see cref="T:System.Int32" />.A hash code for the current object.</returns> |
|
1206 |
</member> |
|
1207 |
<member name="P:System.Net.Http.Headers.EntityTagHeaderValue.IsWeak"> |
|
1208 |
<summary>Gets whether the entity-tag is prefaced by a weakness indicator.</summary> |
|
1209 |
<returns>Returns <see cref="T:System.Boolean" />.true if the entity-tag is prefaced by a weakness indicator; otherwise, false.</returns> |
|
1210 |
</member> |
|
1211 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.Parse(System.String)"> |
|
1212 |
<summary>Converts a string to an <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</summary> |
|
1213 |
<returns>Returns <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" />.An <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</returns> |
|
1214 |
<param name="input">A string that represents entity tag header value information.</param> |
|
1215 |
<exception cref="T:System.ArgumentNullException"> |
|
1216 |
<paramref name="input" /> is a null reference.</exception> |
|
1217 |
<exception cref="T:System.FormatException"> |
|
1218 |
<paramref name="input" /> is not valid entity tag header value information.</exception> |
|
1219 |
</member> |
|
1220 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.System#ICloneable#Clone"> |
|
1221 |
<summary>Creates a new object that is a copy of the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> instance.</summary> |
|
1222 |
<returns>Returns <see cref="T:System.Object" />.A copy of the current instance.</returns> |
|
1223 |
</member> |
|
1224 |
<member name="P:System.Net.Http.Headers.EntityTagHeaderValue.Tag"> |
|
1225 |
<summary>Gets the opaque quoted string. </summary> |
|
1226 |
<returns>Returns <see cref="T:System.String" />.An opaque quoted string.</returns> |
|
1227 |
</member> |
|
1228 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.ToString"> |
|
1229 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> object.</summary> |
|
1230 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1231 |
</member> |
|
1232 |
<member name="M:System.Net.Http.Headers.EntityTagHeaderValue.TryParse(System.String,System.Net.Http.Headers.EntityTagHeaderValue@)"> |
|
1233 |
<summary>Determines whether a string is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information.</summary> |
|
1234 |
<returns>Returns <see cref="T:System.Boolean" />.true if <paramref name="input" /> is valid <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> information; otherwise, false.</returns> |
|
1235 |
<param name="input">The string to validate.</param> |
|
1236 |
<param name="parsedValue">The <see cref="T:System.Net.Http.Headers.EntityTagHeaderValue" /> version of the string.</param> |
|
1237 |
</member> |
|
1238 |
<member name="T:System.Net.Http.Headers.HttpContentHeaders"> |
|
1239 |
<summary>Represents the collection of Content Headers as defined in RFC 2616.</summary> |
|
1240 |
</member> |
|
1241 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.Allow"> |
|
1242 |
<summary>Gets the value of the Allow content header on an HTTP response. </summary> |
|
1243 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Allow header on an HTTP response.</returns> |
|
1244 |
</member> |
|
1245 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentDisposition"> |
|
1246 |
<summary>Gets the value of the Content-Disposition content header on an HTTP response.</summary> |
|
1247 |
<returns>Returns <see cref="T:System.Net.Http.Headers.ContentDispositionHeaderValue" />.The value of the Content-Disposition content header on an HTTP response.</returns> |
|
1248 |
</member> |
|
1249 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentEncoding"> |
|
1250 |
<summary>Gets the value of the Content-Encoding content header on an HTTP response.</summary> |
|
1251 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Encoding content header on an HTTP response.</returns> |
|
1252 |
</member> |
|
1253 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLanguage"> |
|
1254 |
<summary>Gets the value of the Content-Language content header on an HTTP response.</summary> |
|
1255 |
<returns>Returns <see cref="T:System.Collections.Generic.ICollection`1" />.The value of the Content-Language content header on an HTTP response.</returns> |
|
1256 |
</member> |
|
1257 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLength"> |
|
1258 |
<summary>Gets or sets the value of the Content-Length content header on an HTTP response.</summary> |
|
1259 |
<returns>Returns <see cref="T:System.Int64" />.The value of the Content-Length content header on an HTTP response.</returns> |
|
1260 |
</member> |
|
1261 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentLocation"> |
|
1262 |
<summary>Gets or sets the value of the Content-Location content header on an HTTP response.</summary> |
|
1263 |
<returns>Returns <see cref="T:System.Uri" />.The value of the Content-Location content header on an HTTP response.</returns> |
|
1264 |
</member> |
|
1265 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentMD5"> |
|
1266 |
<summary>Gets or sets the value of the Content-MD5 content header on an HTTP response.</summary> |
|
1267 |
<returns>Returns <see cref="T:System.Byte" />.The value of the Content-MD5 content header on an HTTP response.</returns> |
|
1268 |
</member> |
|
1269 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentRange"> |
|
1270 |
<summary>Gets or sets the value of the Content-Range content header on an HTTP response.</summary> |
|
1271 |
<returns>Returns <see cref="T:System.Net.Http.Headers.ContentRangeHeaderValue" />.The value of the Content-Range content header on an HTTP response.</returns> |
|
1272 |
</member> |
|
1273 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.ContentType"> |
|
1274 |
<summary>Gets or sets the value of the Content-Type content header on an HTTP response.</summary> |
|
1275 |
<returns>Returns <see cref="T:System.Net.Http.Headers.MediaTypeHeaderValue" />.The value of the Content-Type content header on an HTTP response.</returns> |
|
1276 |
</member> |
|
1277 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.Expires"> |
|
1278 |
<summary>Gets or sets the value of the Expires content header on an HTTP response.</summary> |
|
1279 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Expires content header on an HTTP response.</returns> |
|
1280 |
</member> |
|
1281 |
<member name="P:System.Net.Http.Headers.HttpContentHeaders.LastModified"> |
|
1282 |
<summary>Gets or sets the value of the Last-Modified content header on an HTTP response.</summary> |
|
1283 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Last-Modified content header on an HTTP response.</returns> |
|
1284 |
</member> |
|
1285 |
<member name="T:System.Net.Http.Headers.HttpHeaders"> |
|
1286 |
<summary>A collection of headers and their values as defined in RFC 2616.</summary> |
|
1287 |
</member> |
|
1288 |
<member name="M:System.Net.Http.Headers.HttpHeaders.#ctor"> |
|
1289 |
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> class.</summary> |
|
1290 |
</member> |
|
1291 |
<member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.Collections.Generic.IEnumerable{System.String})"> |
|
1292 |
<summary>Adds the specified header and its values into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1293 |
<param name="name">The header to add to the collection.</param> |
|
1294 |
<param name="values">A list of header values to add to the collection.</param> |
|
1295 |
</member> |
|
1296 |
<member name="M:System.Net.Http.Headers.HttpHeaders.Add(System.String,System.String)"> |
|
1297 |
<summary>Adds the specified header and its value into the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1298 |
<param name="name">The header to add to the collection.</param> |
|
1299 |
<param name="value">The content of the header.</param> |
|
1300 |
</member> |
|
1301 |
<member name="M:System.Net.Http.Headers.HttpHeaders.Clear"> |
|
1302 |
<summary>Removes all headers from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1303 |
</member> |
|
1304 |
<member name="M:System.Net.Http.Headers.HttpHeaders.Contains(System.String)"> |
|
1305 |
<summary>Returns if a specific header exists in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1306 |
<returns>Returns <see cref="T:System.Boolean" />.true is the specified header exists in the collection; otherwise false.</returns> |
|
1307 |
<param name="name">The specific header.</param> |
|
1308 |
</member> |
|
1309 |
<member name="M:System.Net.Http.Headers.HttpHeaders.GetEnumerator"> |
|
1310 |
<summary>Returns an enumerator that can iterate through the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> instance.</summary> |
|
1311 |
<returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.An enumerator for the <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns> |
|
1312 |
</member> |
|
1313 |
<member name="M:System.Net.Http.Headers.HttpHeaders.GetValues(System.String)"> |
|
1314 |
<summary>Returns all header values for a specified header stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1315 |
<returns>Returns <see cref="T:System.Collections.Generic.IEnumerable`1" />.An array of header strings.</returns> |
|
1316 |
<param name="name">The specified header to return values for.</param> |
|
1317 |
</member> |
|
1318 |
<member name="M:System.Net.Http.Headers.HttpHeaders.Remove(System.String)"> |
|
1319 |
<summary>Removes the specified header from the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1320 |
<returns>Returns <see cref="T:System.Boolean" />.</returns> |
|
1321 |
<param name="name">The name of the header to remove from the collection. </param> |
|
1322 |
</member> |
|
1323 |
<member name="M:System.Net.Http.Headers.HttpHeaders.System#Collections#IEnumerable#GetEnumerator"> |
|
1324 |
<summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</summary> |
|
1325 |
<returns>Returns <see cref="T:System.Collections.IEnumerator" />.An instance of an implementation of an <see cref="T:System.Collections.IEnumerator" /> that can iterate through a <see cref="T:System.Net.Http.Headers.HttpHeaders" />.</returns> |
|
1326 |
</member> |
|
1327 |
<member name="M:System.Net.Http.Headers.HttpHeaders.ToString"> |
|
1328 |
<summary>Returns a string that represents the current <see cref="T:System.Net.Http.Headers.HttpHeaders" /> object.</summary> |
|
1329 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1330 |
</member> |
|
1331 |
<member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.Collections.Generic.IEnumerable{System.String})"> |
|
1332 |
<summary>Returns a value that indicates whether the specified header and its values were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection without validating the provided information.</summary> |
|
1333 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="values" /> could be added to the collection; otherwise false.</returns> |
|
1334 |
<param name="name">The header to add to the collection.</param> |
|
1335 |
<param name="values">The values of the header.</param> |
|
1336 |
</member> |
|
1337 |
<member name="M:System.Net.Http.Headers.HttpHeaders.TryAddWithoutValidation(System.String,System.String)"> |
|
1338 |
<summary>Returns a value that indicates whether the specified header and its value were added to the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection without validating the provided information.</summary> |
|
1339 |
<returns>Returns <see cref="T:System.Boolean" />.true if the specified header <paramref name="name" /> and <paramref name="value" /> could be added to the collection; otherwise false.</returns> |
|
1340 |
<param name="name">The header to add to the collection.</param> |
|
1341 |
<param name="value">The content of the header.</param> |
|
1342 |
</member> |
|
1343 |
<member name="M:System.Net.Http.Headers.HttpHeaders.TryGetValues(System.String,System.Collections.Generic.IEnumerable{System.String}@)"> |
|
1344 |
<summary>Return if a specified header and specified values are stored in the <see cref="T:System.Net.Http.Headers.HttpHeaders" /> collection.</summary> |
|
1345 |
<returns>Returns <see cref="T:System.Boolean" />.true is the specified header <paramref name="name" /> and values are stored in the collection; otherwise false.</returns> |
|
1346 |
<param name="name">The specified header.</param> |
|
1347 |
<param name="values">The specified header values.</param> |
|
1348 |
</member> |
|
1349 |
<member name="T:System.Net.Http.Headers.HttpHeaderValueCollection`1"> |
|
1350 |
<summary>Represents a collection of header values.</summary> |
|
1351 |
<typeparam name="T"></typeparam> |
|
1352 |
</member> |
|
1353 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Add(`0)"></member> |
|
1354 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Clear"></member> |
|
1355 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Contains(`0)"> |
|
1356 |
<returns>Returns <see cref="T:System.Boolean" />.</returns> |
|
1357 |
</member> |
|
1358 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.CopyTo(`0[],System.Int32)"></member> |
|
1359 |
<member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.Count"> |
|
1360 |
<returns>Returns <see cref="T:System.Int32" />.</returns> |
|
1361 |
</member> |
|
1362 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.GetEnumerator"> |
|
1363 |
<returns>Returns <see cref="T:System.Collections.Generic.IEnumerator`1" />.</returns> |
|
1364 |
</member> |
|
1365 |
<member name="P:System.Net.Http.Headers.HttpHeaderValueCollection`1.IsReadOnly"> |
|
1366 |
<returns>Returns <see cref="T:System.Boolean" />.</returns> |
|
1367 |
</member> |
|
1368 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ParseAdd(System.String)"></member> |
|
1369 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.Remove(`0)"> |
|
1370 |
<returns>Returns <see cref="T:System.Boolean" />.</returns> |
|
1371 |
</member> |
|
1372 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.System#Collections#IEnumerable#GetEnumerator"> |
|
1373 |
<returns>Returns <see cref="T:System.Collections.IEnumerator" />.</returns> |
|
1374 |
</member> |
|
1375 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.ToString"> |
|
1376 |
<summary>Returns a string that represents the current XXX object.</summary> |
|
1377 |
<returns>Returns <see cref="T:System.String" />.A string that represents the current object.</returns> |
|
1378 |
</member> |
|
1379 |
<member name="M:System.Net.Http.Headers.HttpHeaderValueCollection`1.TryParseAdd(System.String)"> |
|
1380 |
<summary>Determines whether a string is valid XXX information.</summary> |
|
1381 |
<returns>Returns <see cref="T:System.Boolean" />.</returns> |
|
1382 |
<param name="input">The string to validate.</param> |
|
1383 |
</member> |
|
1384 |
<member name="T:System.Net.Http.Headers.HttpRequestHeaders"> |
|
1385 |
<summary>Represents the collection of Request Headers as defined in RFC 2616.</summary> |
|
1386 |
</member> |
|
1387 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Accept"> |
|
1388 |
<summary>Gets the value of the Accept header for an HTTP request.</summary> |
|
1389 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept header for an HTTP request.</returns> |
|
1390 |
</member> |
|
1391 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptCharset"> |
|
1392 |
<summary>Gets the value of the Accept-Charset header for an HTTP request.</summary> |
|
1393 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Charset header for an HTTP request.</returns> |
|
1394 |
</member> |
|
1395 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptEncoding"> |
|
1396 |
<summary>Gets the value of the Accept-Encoding header for an HTTP request.</summary> |
|
1397 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Encoding header for an HTTP request.</returns> |
|
1398 |
</member> |
|
1399 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.AcceptLanguage"> |
|
1400 |
<summary>Gets the value of the Accept-Language header for an HTTP request.</summary> |
|
1401 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Accept-Language header for an HTTP request.</returns> |
|
1402 |
</member> |
|
1403 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Authorization"> |
|
1404 |
<summary>Gets or sets the value of the Authorization header for an HTTP request.</summary> |
|
1405 |
<returns>Returns <see cref="T:System.Net.Http.Headers.AuthenticationHeaderValue" />.The value of the Authorization header for an HTTP request.</returns> |
|
1406 |
</member> |
|
1407 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.CacheControl"> |
|
1408 |
<summary>Gets or sets the value of the Cache-Control header for an HTTP request.</summary> |
|
1409 |
<returns>Returns <see cref="T:System.Net.Http.Headers.CacheControlHeaderValue" />.The value of the Cache-Control header for an HTTP request.</returns> |
|
1410 |
</member> |
|
1411 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Connection"> |
|
1412 |
<summary>Gets the value of the Connection header for an HTTP request.</summary> |
|
1413 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Connection header for an HTTP request.</returns> |
|
1414 |
</member> |
|
1415 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.ConnectionClose"> |
|
1416 |
<summary>Gets or sets a value that indicates if the Connection header for an HTTP request contains Close.</summary> |
|
1417 |
<returns>Returns <see cref="T:System.Boolean" />.true if the Connection header contains Close, otherwise false.</returns> |
|
1418 |
</member> |
|
1419 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Date"> |
|
1420 |
<summary>Gets or sets the value of the Date header for an HTTP request.</summary> |
|
1421 |
<returns>Returns <see cref="T:System.DateTimeOffset" />.The value of the Date header for an HTTP request.</returns> |
|
1422 |
</member> |
|
1423 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Expect"> |
|
1424 |
<summary>Gets the value of the Expect header for an HTTP request.</summary> |
|
1425 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the Expect header for an HTTP request.</returns> |
|
1426 |
</member> |
|
1427 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.ExpectContinue"> |
|
1428 |
<summary>Gets or sets a value that indicates if the Expect header for an HTTP request contains Continue.</summary> |
|
1429 |
<returns>Returns <see cref="T:System.Boolean" />.true if the Expect header contains Continue, otherwise false.</returns> |
|
1430 |
</member> |
|
1431 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.From"> |
|
1432 |
<summary>Gets or sets the value of the From header for an HTTP request.</summary> |
|
1433 |
<returns>Returns <see cref="T:System.String" />.The value of the From header for an HTTP request.</returns> |
|
1434 |
</member> |
|
1435 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.Host"> |
|
1436 |
<summary>Gets or sets the value of the Host header for an HTTP request.</summary> |
|
1437 |
<returns>Returns <see cref="T:System.String" />.The value of the Host header for an HTTP request.</returns> |
|
1438 |
</member> |
|
1439 |
<member name="P:System.Net.Http.Headers.HttpRequestHeaders.IfMatch"> |
|
1440 |
<summary>Gets the value of the If-Match header for an HTTP request.</summary> |
|
1441 |
<returns>Returns <see cref="T:System.Net.Http.Headers.HttpHeaderValueCollection`1" />.The value of the If-Match header for an HTTP request.</returns> |
|
1442 |
</member> |
내보내기 Unified diff