[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / microsoft.aspnetcore.http.features / 2.0.1 / lib / netstandard2.0 / Microsoft.AspNetCore.Http.Features.xml
1 <?xml version="1.0"?>
2 <doc>
3     <assembly>
4         <name>Microsoft.AspNetCore.Http.Features</name>
5     </assembly>
6     <members>
7         <member name="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection">
8             <summary>
9             Represents a collection of HTTP features.
10             </summary>
11         </member>
12         <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.IsReadOnly">
13             <summary>
14             Indicates if the collection can be modified.
15             </summary>
16         </member>
17         <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Revision">
18             <summary>
19             Incremented for each modification and can be used to verify cached results.
20             </summary>
21         </member>
22         <member name="P:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Item(System.Type)">
23             <summary>
24             Gets or sets a given feature. Setting a null value removes the feature.
25             </summary>
26             <param name="key"></param>
27             <returns>The requested feature, or null if it is not present.</returns>
28         </member>
29         <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Get``1">
30             <summary>
31             Retrieves the requested feature from the collection.
32             </summary>
33             <typeparam name="TFeature">The feature key.</typeparam>
34             <returns>The requested feature, or null if it is not present.</returns>
35         </member>
36         <member name="M:Microsoft.AspNetCore.Http.Features.IFeatureCollection.Set``1(``0)">
37             <summary>
38             Sets the given feature in the collection.
39             </summary>
40             <typeparam name="TFeature">The feature key.</typeparam>
41             <param name="instance">The feature value.</param>
42         </member>
43         <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.HasFormContentType">
44             <summary>
45             Indicates if the request has a supported form content-type.
46             </summary>
47         </member>
48         <member name="P:Microsoft.AspNetCore.Http.Features.IFormFeature.Form">
49             <summary>
50             The parsed form, if any.
51             </summary>
52         </member>
53         <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadForm">
54             <summary>
55             Parses the request body as a form.
56             </summary>
57             <returns></returns>
58         </member>
59         <member name="M:Microsoft.AspNetCore.Http.Features.IFormFeature.ReadFormAsync(System.Threading.CancellationToken)">
60             <summary>
61             Parses the request body as a form.
62             </summary>
63             <param name="cancellationToken"></param>
64             <returns></returns>
65         </member>
66         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature">
67             <summary>
68             Controls the IO behavior for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> 
69             </summary>
70         </member>
71         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpBodyControlFeature.AllowSynchronousIO">
72             <summary>
73             Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body"/> and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body"/> 
74             </summary>
75         </member>
76         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature">
77             <summary>
78             Information regarding the TCP/IP connection carrying the request.
79             </summary>
80         </member>
81         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.ConnectionId">
82             <summary>
83             The unique identifier for the connection the request was received on. This is primarily for diagnostic purposes.
84             </summary>
85         </member>
86         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemoteIpAddress">
87             <summary>
88             The IPAddress of the client making the request. Note this may be for a proxy rather than the end user.
89             </summary>
90         </member>
91         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalIpAddress">
92             <summary>
93             The local IPAddress on which the request was received.
94             </summary>
95         </member>
96         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.RemotePort">
97             <summary>
98             The remote port of the client making the request.
99             </summary>
100         </member>
101         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature.LocalPort">
102             <summary>
103             The local port on which the request was received.
104             </summary>
105         </member>
106         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature">
107             <summary>
108             Feature to inspect and modify the maximum request body size for a single request.
109             </summary>
110         </member>
111         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.IsReadOnly">
112             <summary>
113             Indicates whether <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize"/> is read-only.
114             If true, this could mean that the request body has already been read from
115             or that <see cref="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync"/> was called.
116             </summary>
117         </member>
118         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpMaxRequestBodySizeFeature.MaxRequestBodySize">
119             <summary>
120             The maximum allowed size of the current request body in bytes.
121             When set to null, the maximum request body size is unlimited.
122             This cannot be modified after the reading the request body has started.
123             This limit does not affect upgraded connections which are always unlimited.
124             </summary>
125             <remarks>
126             Defaults to the server's global max request body size limit.
127             </remarks>
128         </member>
129         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature">
130             <summary>
131             Contains the details of a given request. These properties should all be mutable.
132             None of these properties should ever be set to null.
133             </summary>
134         </member>
135         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Protocol">
136             <summary>
137             The HTTP-version as defined in RFC 7230. E.g. "HTTP/1.1"
138             </summary>
139         </member>
140         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Scheme">
141             <summary>
142             The request uri scheme. E.g. "http" or "https". Note this value is not included
143             in the original request, it is inferred by checking if the transport used a TLS
144             connection or not.
145             </summary>
146         </member>
147         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Method">
148             <summary>
149             The request method as defined in RFC 7230. E.g. "GET", "HEAD", "POST", etc..
150             </summary>
151         </member>
152         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase">
153             <summary>
154             The first portion of the request path associated with application root. The value
155             is un-escaped. The value may be string.Empty.
156             </summary>
157         </member>
158         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Path">
159             <summary>
160             The portion of the request path that identifies the requested resource. The value
161             is un-escaped. The value may be string.Empty if <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.PathBase"/> contains the
162             full path.
163             </summary>
164         </member>
165         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.QueryString">
166             <summary>
167             The query portion of the request-target as defined in RFC 7230. The value
168             may be string.Empty. If not empty then the leading '?' will be included. The value
169             is in its original form, without un-escaping.
170             </summary>
171         </member>
172         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.RawTarget">
173             <summary>
174             The request target as it was sent in the HTTP request. This property contains the
175             raw path and full query, as well as other request targets such as * for OPTIONS
176             requests (https://tools.ietf.org/html/rfc7230#section-5.3).
177             </summary>
178             <remarks>
179             This property is not used internally for routing or authorization decisions. It has not
180             been UrlDecoded and care should be taken in its use.
181             </remarks>
182         </member>
183         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Headers">
184             <summary>
185             Headers included in the request, aggregated by header name. The values are not split
186             or merged across header lines. E.g. The following headers:
187             HeaderA: value1, value2
188             HeaderA: value3
189             Result in Headers["HeaderA"] = { "value1, value2", "value3" }
190             </summary>
191         </member>
192         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestFeature.Body">
193             <summary>
194             A <see cref="T:System.IO.Stream"/> representing the request body, if any. Stream.Null may be used
195             to represent an empty request body.
196             </summary>
197         </member>
198         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature">
199             <summary>
200             Feature to identify a request.
201             </summary>
202         </member>
203         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature.TraceIdentifier">
204             <summary>
205             Identifier to trace a request.
206             </summary>
207         </member>
208         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.RequestAborted">
209             <summary>
210             A <see cref="T:System.Threading.CancellationToken"/> that fires if the request is aborted and
211             the application should cease processing. The token will not fire if the request
212             completes successfully.
213             </summary>
214         </member>
215         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature.Abort">
216             <summary>
217             Forcefully aborts the request if it has not already completed. This will result in
218             RequestAborted being triggered.
219             </summary>
220         </member>
221         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature">
222             <summary>
223             Represents the fields and state of an HTTP response.
224             </summary>
225         </member>
226         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode">
227             <summary>
228             The status-code as defined in RFC 7230. The default value is 200.
229             </summary>
230         </member>
231         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase">
232             <summary>
233             The reason-phrase as defined in RFC 7230. Note this field is no longer supported by HTTP/2.
234             </summary>
235         </member>
236         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers">
237             <summary>
238             The response headers to send. Headers with multiple values will be emitted as multiple headers.
239             </summary>
240         </member>
241         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Body">
242             <summary>
243             The <see cref="T:System.IO.Stream"/> for writing the response body.
244             </summary>
245         </member>
246         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.HasStarted">
247             <summary>
248             Indicates if the response has started. If true, the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>,
249             <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>, and <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/> are now immutable, and
250             OnStarting should no longer be called.
251             </summary>
252         </member>
253         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnStarting(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)">
254             <summary>
255             Registers a callback to be invoked just before the response starts. This is the
256             last chance to modify the <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.Headers"/>, <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.StatusCode"/>, or
257             <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.ReasonPhrase"/>.
258             </summary>
259             <param name="callback">The callback to invoke when starting the response.</param>
260             <param name="state">The state to pass into the callback.</param>
261         </member>
262         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature.OnCompleted(System.Func{System.Object,System.Threading.Tasks.Task},System.Object)">
263             <summary>
264             Registers a callback to be invoked after a response has fully completed. This is
265             intended for resource cleanup.
266             </summary>
267             <param name="callback">The callback to invoke after the response has completed.</param>
268             <param name="state">The state to pass into the callback.</param>
269         </member>
270         <member name="T:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature">
271             <summary>
272             Provides an efficient mechanism for transferring files from disk to the network.
273             </summary>
274         </member>
275         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpSendFileFeature.SendFileAsync(System.String,System.Int64,System.Nullable{System.Int64},System.Threading.CancellationToken)">
276             <summary>
277             Sends the requested file in the response body. This may bypass the IHttpResponseFeature.Body
278             <see cref="T:System.IO.Stream"/>. A response may include multiple writes.
279             </summary>
280             <param name="path">The full disk path to the file.</param>
281             <param name="offset">The offset in the file to start at.</param>
282             <param name="count">The number of bytes to send, or null to send the remainder of the file.</param>
283             <param name="cancellation">A <see cref="T:System.Threading.CancellationToken"/> used to abort the transmission.</param>
284             <returns></returns>
285         </member>
286         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest">
287             <summary>
288             Indicates if the server can upgrade this request to an opaque, bidirectional stream.
289             </summary>
290         </member>
291         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.UpgradeAsync">
292             <summary>
293             Attempt to upgrade the request to an opaque, bidirectional stream. The response status code
294             and headers need to be set before this is invoked. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpUpgradeFeature.IsUpgradableRequest"/>
295             before invoking.
296             </summary>
297             <returns></returns>
298         </member>
299         <member name="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest">
300             <summary>
301             Indicates if this is a WebSocket upgrade request.
302             </summary>
303         </member>
304         <member name="M:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.AcceptAsync(Microsoft.AspNetCore.Http.WebSocketAcceptContext)">
305             <summary>
306             Attempts to upgrade the request to a <see cref="T:System.Net.WebSockets.WebSocket"/>. Check <see cref="P:Microsoft.AspNetCore.Http.Features.IHttpWebSocketFeature.IsWebSocketRequest"/>
307             before invoking this.
308             </summary>
309             <param name="context"></param>
310             <returns></returns>
311         </member>
312         <member name="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature">
313             <summary>
314             A helper for creating the response Set-Cookie header.
315             </summary>
316         </member>
317         <member name="P:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature.Cookies">
318             <summary>
319             Gets the wrapper for the response Set-Cookie header.
320             </summary>
321         </member>
322         <member name="P:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.ClientCertificate">
323             <summary>
324             Synchronously retrieves the client certificate, if any.
325             </summary>
326         </member>
327         <member name="M:Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature.GetClientCertificateAsync(System.Threading.CancellationToken)">
328             <summary>
329             Asynchronously retrieves the client certificate, if any.
330             </summary>
331             <returns></returns>
332         </member>
333         <member name="T:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature">
334             <summary>
335             Provides information regarding TLS token binding parameters.
336             </summary>
337             <remarks>
338             TLS token bindings help mitigate the risk of impersonation by an attacker in the
339             event an authenticated client's bearer tokens are somehow exfiltrated from the
340             client's machine. See https://datatracker.ietf.org/doc/draft-popov-token-binding/
341             for more information.
342             </remarks>
343         </member>
344         <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetProvidedTokenBindingId">
345             <summary>
346             Gets the 'provided' token binding identifier associated with the request.
347             </summary>
348             <returns>The token binding identifier, or null if the client did not
349             supply a 'provided' token binding or valid proof of possession of the
350             associated private key. The caller should treat this identifier as an
351             opaque blob and should not try to parse it.</returns>
352         </member>
353         <member name="M:Microsoft.AspNetCore.Http.Features.ITlsTokenBindingFeature.GetReferredTokenBindingId">
354             <summary>
355             Gets the 'referred' token binding identifier associated with the request.
356             </summary>
357             <returns>The token binding identifier, or null if the client did not
358             supply a 'referred' token binding or valid proof of possession of the
359             associated private key. The caller should treat this identifier as an
360             opaque blob and should not try to parse it.</returns>
361         </member>
362         <member name="T:Microsoft.AspNetCore.Http.CookieOptions">
363             <summary>
364             Options used to create a new cookie.
365             </summary>
366         </member>
367         <member name="M:Microsoft.AspNetCore.Http.CookieOptions.#ctor">
368             <summary>
369             Creates a default cookie with a path of '/'.
370             </summary>
371         </member>
372         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Domain">
373             <summary>
374             Gets or sets the domain to associate the cookie with.
375             </summary>
376             <returns>The domain to associate the cookie with.</returns>
377         </member>
378         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Path">
379             <summary>
380             Gets or sets the cookie path.
381             </summary>
382             <returns>The cookie path.</returns>
383         </member>
384         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Expires">
385             <summary>
386             Gets or sets the expiration date and time for the cookie.
387             </summary>
388             <returns>The expiration date and time for the cookie.</returns>
389         </member>
390         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.Secure">
391             <summary>
392             Gets or sets a value that indicates whether to transmit the cookie using Secure Sockets Layer (SSL)--that is, over HTTPS only.
393             </summary>
394             <returns>true to transmit the cookie only over an SSL connection (HTTPS); otherwise, false.</returns>
395         </member>
396         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.SameSite">
397             <summary>
398             Gets or sets the value for the SameSite attribute of the cookie. The default value is <see cref="F:Microsoft.AspNetCore.Http.SameSiteMode.Lax"/>
399             </summary>
400             <returns>The <see cref="T:Microsoft.AspNetCore.Http.SameSiteMode"/> representing the enforcement mode of the cookie.</returns>
401         </member>
402         <member name="P:Microsoft.AspNetCore.Http.CookieOptions.HttpOnly">
403             <summary>
404             Gets or sets a value that indicates whether a cookie is accessible by client-side script.
405             </summary>
406             <returns>true if a cookie must not be accessible by client-side script; otherwise, false.</returns>
407         </member>
408         <member name="T:Microsoft.AspNetCore.Http.IFormCollection">
409             <summary>
410             Represents the parsed form values sent with the HttpRequest.
411             </summary>
412         </member>
413         <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Count">
414             <summary>
415                 Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />.
416             </summary>
417             <returns>
418                 The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />.
419             </returns>
420         </member>
421         <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Keys">
422             <summary>
423                 Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the
424                 <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />.
425             </summary>
426             <returns>
427                 An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object
428                 that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />.
429             </returns>
430         </member>
431         <member name="M:Microsoft.AspNetCore.Http.IFormCollection.ContainsKey(System.String)">
432             <summary>
433                 Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element
434                 with the specified key.
435             </summary>
436             <param name="key">
437             The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" />.
438             </param>
439             <returns>
440                 true if the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains an element with
441                 the key; otherwise, false.
442             </returns>
443             <exception cref="T:System.ArgumentNullException">
444                 key is null.
445             </exception>
446         </member>
447         <member name="M:Microsoft.AspNetCore.Http.IFormCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)">
448             <summary>
449                Gets the value associated with the specified key.
450             </summary>
451             <param name="key">
452                 The key of the value to get.
453             </param>
454             <param name="value">
455                 The key of the value to get.
456                 When this method returns, the value associated with the specified key, if the
457                 key is found; otherwise, the default value for the type of the value parameter.
458                 This parameter is passed uninitialized.
459             </param>
460             <returns>
461                true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> contains
462                 an element with the specified key; otherwise, false.
463             </returns>
464             <exception cref="T:System.ArgumentNullException">
465                 key is null.
466             </exception>
467         </member>
468         <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Item(System.String)">
469             <summary>
470                 Gets the value with the specified key.
471             </summary>
472             <param name="key">
473                 The key of the value to get.
474             </param>
475             <returns>
476                 The element with the specified key, or <c>StringValues.Empty</c> if the key is not present.
477             </returns>
478             <exception cref="T:System.ArgumentNullException">
479                 key is null.
480             </exception>
481             <remarks>
482                 <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> has a different indexer contract than
483                 <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries
484                 rather than throwing an Exception.
485             </remarks>
486         </member>
487         <member name="P:Microsoft.AspNetCore.Http.IFormCollection.Files">
488             <summary>
489             The file collection sent with the request.
490             </summary>
491             <returns>The files included with the request.</returns>
492         </member>
493         <member name="T:Microsoft.AspNetCore.Http.IFormFile">
494             <summary>
495             Represents a file sent with the HttpRequest.
496             </summary>
497         </member>
498         <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentType">
499             <summary>
500             Gets the raw Content-Type header of the uploaded file.
501             </summary>
502         </member>
503         <member name="P:Microsoft.AspNetCore.Http.IFormFile.ContentDisposition">
504             <summary>
505             Gets the raw Content-Disposition header of the uploaded file.
506             </summary>
507         </member>
508         <member name="P:Microsoft.AspNetCore.Http.IFormFile.Headers">
509             <summary>
510             Gets the header dictionary of the uploaded file.
511             </summary>
512         </member>
513         <member name="P:Microsoft.AspNetCore.Http.IFormFile.Length">
514             <summary>
515             Gets the file length in bytes.
516             </summary>
517         </member>
518         <member name="P:Microsoft.AspNetCore.Http.IFormFile.Name">
519             <summary>
520             Gets the name from the Content-Disposition header.
521             </summary>
522         </member>
523         <member name="P:Microsoft.AspNetCore.Http.IFormFile.FileName">
524             <summary>
525             Gets the file name from the Content-Disposition header.
526             </summary>
527         </member>
528         <member name="M:Microsoft.AspNetCore.Http.IFormFile.OpenReadStream">
529             <summary>
530             Opens the request stream for reading the uploaded file.
531             </summary>
532         </member>
533         <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyTo(System.IO.Stream)">
534             <summary>
535             Copies the contents of the uploaded file to the <paramref name="target"/> stream.
536             </summary>
537             <param name="target">The stream to copy the file contents to.</param>
538         </member>
539         <member name="M:Microsoft.AspNetCore.Http.IFormFile.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)">
540             <summary>
541             Asynchronously copies the contents of the uploaded file to the <paramref name="target"/> stream.
542             </summary>
543             <param name="target">The stream to copy the file contents to.</param>
544             <param name="cancellationToken"></param>
545         </member>
546         <member name="T:Microsoft.AspNetCore.Http.IFormFileCollection">
547             <summary>
548             Represents the collection of files sent with the HttpRequest.
549             </summary>
550         </member>
551         <member name="T:Microsoft.AspNetCore.Http.IHeaderDictionary">
552             <summary>
553             Represents HttpRequest and HttpResponse headers
554             </summary>
555         </member>
556         <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.Item(System.String)">
557             <summary>
558             IHeaderDictionary has a different indexer contract than IDictionary, where it will return StringValues.Empty for missing entries.
559             </summary>
560             <param name="key"></param>
561             <returns>The stored value, or StringValues.Empty if the key is not present.</returns>
562         </member>
563         <member name="P:Microsoft.AspNetCore.Http.IHeaderDictionary.ContentLength">
564             <summary>
565             Strongly typed access to the Content-Length header. Implementations must keep this in sync with the string representation.
566             </summary>
567         </member>
568         <member name="T:Microsoft.AspNetCore.Http.IQueryCollection">
569             <summary>
570                 Represents the HttpRequest query string collection
571             </summary>
572         </member>
573         <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Count">
574             <summary>
575                 Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />.
576             </summary>
577             <returns>
578                 The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />.
579             </returns>
580         </member>
581         <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Keys">
582             <summary>
583                 Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the
584                 <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />.
585             </summary>
586             <returns>
587                 An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object
588                 that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />.
589             </returns>
590         </member>
591         <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.ContainsKey(System.String)">
592             <summary>
593                 Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element
594                 with the specified key.
595             </summary>
596             <param name="key">
597             The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" />.
598             </param>
599             <returns>
600                 true if the <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains an element with
601                 the key; otherwise, false.
602             </returns>
603             <exception cref="T:System.ArgumentNullException">
604                 key is null.
605             </exception>
606         </member>
607         <member name="M:Microsoft.AspNetCore.Http.IQueryCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)">
608             <summary>
609                Gets the value associated with the specified key.
610             </summary>
611             <param name="key">
612                 The key of the value to get.
613             </param>
614             <param name="value">
615                 The key of the value to get.
616                 When this method returns, the value associated with the specified key, if the
617                 key is found; otherwise, the default value for the type of the value parameter.
618                 This parameter is passed uninitialized.
619             </param>
620             <returns>
621                true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> contains
622                 an element with the specified key; otherwise, false.
623             </returns>
624             <exception cref="T:System.ArgumentNullException">
625                 key is null.
626             </exception>
627         </member>
628         <member name="P:Microsoft.AspNetCore.Http.IQueryCollection.Item(System.String)">
629             <summary>
630                 Gets the value with the specified key.
631             </summary>
632             <param name="key">
633                 The key of the value to get.
634             </param>
635             <returns>
636                 The element with the specified key, or <c>StringValues.Empty</c> if the key is not present.
637             </returns>
638             <exception cref="T:System.ArgumentNullException">
639                 key is null.
640             </exception>
641             <remarks>
642                 <see cref="T:Microsoft.AspNetCore.Http.IQueryCollection" /> has a different indexer contract than
643                 <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>StringValues.Empty</c> for missing entries
644                 rather than throwing an Exception.
645             </remarks>
646         </member>
647         <member name="T:Microsoft.AspNetCore.Http.IRequestCookieCollection">
648             <summary>
649             Represents the HttpRequest cookie collection
650             </summary>
651         </member>
652         <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Count">
653             <summary>
654                 Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />.
655             </summary>
656             <returns>
657                 The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />.
658             </returns>
659         </member>
660         <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Keys">
661             <summary>
662                 Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the
663                 <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />.
664             </summary>
665             <returns>
666                 An <see cref="T:System.Collections.Generic.ICollection`1" /> containing the keys of the object
667                 that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />.
668             </returns>
669         </member>
670         <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.ContainsKey(System.String)">
671             <summary>
672                 Determines whether the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element
673                 with the specified key.
674             </summary>
675             <param name="key">
676             The key to locate in the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" />.
677             </param>
678             <returns>
679                 true if the <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains an element with
680                 the key; otherwise, false.
681             </returns>
682             <exception cref="T:System.ArgumentNullException">
683                 key is null.
684             </exception>
685         </member>
686         <member name="M:Microsoft.AspNetCore.Http.IRequestCookieCollection.TryGetValue(System.String,System.String@)">
687             <summary>
688                Gets the value associated with the specified key.
689             </summary>
690             <param name="key">
691                 The key of the value to get.
692             </param>
693             <param name="value">
694                 The key of the value to get.
695                 When this method returns, the value associated with the specified key, if the
696                 key is found; otherwise, the default value for the type of the value parameter.
697                 This parameter is passed uninitialized.
698             </param>
699             <returns>
700                true if the object that implements <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> contains
701                 an element with the specified key; otherwise, false.
702             </returns>
703             <exception cref="T:System.ArgumentNullException">
704                 key is null.
705             </exception>
706         </member>
707         <member name="P:Microsoft.AspNetCore.Http.IRequestCookieCollection.Item(System.String)">
708             <summary>
709                 Gets the value with the specified key.
710             </summary>
711             <param name="key">
712                 The key of the value to get.
713             </param>
714             <returns>
715                 The element with the specified key, or <c>string.Empty</c> if the key is not present.
716             </returns>
717             <exception cref="T:System.ArgumentNullException">
718                 key is null.
719             </exception>
720             <remarks>
721                 <see cref="T:Microsoft.AspNetCore.Http.IRequestCookieCollection" /> has a different indexer contract than
722                 <see cref="T:System.Collections.Generic.IDictionary`2" />, as it will return <c>string.Empty</c> for missing entries
723                 rather than throwing an Exception.
724             </remarks>
725         </member>
726         <member name="T:Microsoft.AspNetCore.Http.IResponseCookies">
727             <summary>
728             A wrapper for the response Set-Cookie header.
729             </summary>
730         </member>
731         <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String)">
732             <summary>
733             Add a new cookie and value.
734             </summary>
735             <param name="key">Name of the new cookie.</param>
736             <param name="value">Value of the new cookie.</param>
737         </member>
738         <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Append(System.String,System.String,Microsoft.AspNetCore.Http.CookieOptions)">
739             <summary>
740             Add a new cookie.
741             </summary>
742             <param name="key">Name of the new cookie.</param>
743             <param name="value">Value of the new cookie.</param>
744             <param name="options"><see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> included in the new cookie setting.</param>
745         </member>
746         <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String)">
747             <summary>
748             Sets an expired cookie.
749             </summary>
750             <param name="key">Name of the cookie to expire.</param>
751         </member>
752         <member name="M:Microsoft.AspNetCore.Http.IResponseCookies.Delete(System.String,Microsoft.AspNetCore.Http.CookieOptions)">
753             <summary>
754             Sets an expired cookie.
755             </summary>
756             <param name="key">Name of the cookie to expire.</param>
757             <param name="options">
758             <see cref="T:Microsoft.AspNetCore.Http.CookieOptions"/> used to discriminate the particular cookie to expire. The
759             <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Domain"/> and <see cref="P:Microsoft.AspNetCore.Http.CookieOptions.Path"/> values are especially important.
760             </param>
761         </member>
762         <member name="P:Microsoft.AspNetCore.Http.ISession.IsAvailable">
763             <summary>
764             Indicate whether the current session has loaded.
765             </summary>
766         </member>
767         <member name="P:Microsoft.AspNetCore.Http.ISession.Id">
768             <summary>
769             A unique identifier for the current session. This is not the same as the session cookie
770             since the cookie lifetime may not be the same as the session entry lifetime in the data store.
771             </summary>
772         </member>
773         <member name="P:Microsoft.AspNetCore.Http.ISession.Keys">
774             <summary>
775             Enumerates all the keys, if any.
776             </summary>
777         </member>
778         <member name="M:Microsoft.AspNetCore.Http.ISession.LoadAsync(System.Threading.CancellationToken)">
779             <summary>
780             Load the session from the data store. This may throw if the data store is unavailable.
781             </summary>
782             <returns></returns>
783         </member>
784         <member name="M:Microsoft.AspNetCore.Http.ISession.CommitAsync(System.Threading.CancellationToken)">
785             <summary>
786             Store the session in the data store. This may throw if the data store is unavailable.
787             </summary>
788             <returns></returns>
789         </member>
790         <member name="M:Microsoft.AspNetCore.Http.ISession.TryGetValue(System.String,System.Byte[]@)">
791             <summary>
792             Retrieve the value of the given key, if present.
793             </summary>
794             <param name="key"></param>
795             <param name="value"></param>
796             <returns></returns>
797         </member>
798         <member name="M:Microsoft.AspNetCore.Http.ISession.Set(System.String,System.Byte[])">
799             <summary>
800             Set the given key and value in the current session. This will throw if the session
801             was not established prior to sending the response.
802             </summary>
803             <param name="key"></param>
804             <param name="value"></param>
805         </member>
806         <member name="M:Microsoft.AspNetCore.Http.ISession.Remove(System.String)">
807             <summary>
808             Remove the given key from the session if present.
809             </summary>
810             <param name="key"></param>
811         </member>
812         <member name="M:Microsoft.AspNetCore.Http.ISession.Clear">
813             <summary>
814             Remove all entries from the current session, if any.
815             The session cookie is not removed.
816             </summary>
817         </member>
818     </members>
819 </doc>