Microsoft.AspNetCore.Http.xml 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNetCore.Http</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.DependencyInjection.HttpServiceCollectionExtensions">
  8. <summary>
  9. Extension methods for configuring HttpContext services.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.DependencyInjection.HttpServiceCollectionExtensions.AddHttpContextAccessor(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  13. <summary>
  14. Adds a default implementation for the <see cref="T:Microsoft.AspNetCore.Http.IHttpContextAccessor"/> service.
  15. </summary>
  16. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  17. <returns>The service collection.</returns>
  18. </member>
  19. <member name="P:Microsoft.AspNetCore.Http.DefaultHttpContext.Authentication">
  20. <summary>
  21. This is obsolete and will be removed in a future version.
  22. The recommended alternative is to use Microsoft.AspNetCore.Authentication.AuthenticationHttpContextExtensions.
  23. See https://go.microsoft.com/fwlink/?linkid=845470.
  24. </summary>
  25. </member>
  26. <member name="T:Microsoft.AspNetCore.Http.HttpRequestRewindExtensions">
  27. <summary>
  28. Extension methods for enabling buffering in an <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/>.
  29. </summary>
  30. </member>
  31. <member name="M:Microsoft.AspNetCore.Http.HttpRequestRewindExtensions.EnableBuffering(Microsoft.AspNetCore.Http.HttpRequest)">
  32. <summary>
  33. Ensure the <paramref name="request"/> <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Body"/> can be read multiple times. Normally
  34. buffers request bodies in memory; writes requests larger than 30K bytes to disk.
  35. </summary>
  36. <param name="request">The <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> to prepare.</param>
  37. <remarks>
  38. Temporary files for larger requests are written to the location named in the <c>ASPNETCORE_TEMP</c>
  39. environment variable, if any. If that environment variable is not defined, these files are written to the
  40. current user's temporary folder. Files are automatically deleted at the end of their associated requests.
  41. </remarks>
  42. </member>
  43. <member name="M:Microsoft.AspNetCore.Http.HttpRequestRewindExtensions.EnableBuffering(Microsoft.AspNetCore.Http.HttpRequest,System.Int32)">
  44. <summary>
  45. Ensure the <paramref name="request"/> <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Body"/> can be read multiple times. Normally
  46. buffers request bodies in memory; writes requests larger than <paramref name="bufferThreshold"/> bytes to
  47. disk.
  48. </summary>
  49. <param name="request">The <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> to prepare.</param>
  50. <param name="bufferThreshold">
  51. The maximum size in bytes of the in-memory <see cref="T:System.Buffers.ArrayPool`1"/> used to buffer the
  52. stream. Larger request bodies are written to disk.
  53. </param>
  54. <remarks>
  55. Temporary files for larger requests are written to the location named in the <c>ASPNETCORE_TEMP</c>
  56. environment variable, if any. If that environment variable is not defined, these files are written to the
  57. current user's temporary folder. Files are automatically deleted at the end of their associated requests.
  58. </remarks>
  59. </member>
  60. <member name="M:Microsoft.AspNetCore.Http.HttpRequestRewindExtensions.EnableBuffering(Microsoft.AspNetCore.Http.HttpRequest,System.Int64)">
  61. <summary>
  62. Ensure the <paramref name="request"/> <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Body"/> can be read multiple times. Normally
  63. buffers request bodies in memory; writes requests larger than 30K bytes to disk.
  64. </summary>
  65. <param name="request">The <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> to prepare.</param>
  66. <param name="bufferLimit">
  67. The maximum size in bytes of the request body. An attempt to read beyond this limit will cause an
  68. <see cref="T:System.IO.IOException"/>.
  69. </param>
  70. <remarks>
  71. Temporary files for larger requests are written to the location named in the <c>ASPNETCORE_TEMP</c>
  72. environment variable, if any. If that environment variable is not defined, these files are written to the
  73. current user's temporary folder. Files are automatically deleted at the end of their associated requests.
  74. </remarks>
  75. </member>
  76. <member name="M:Microsoft.AspNetCore.Http.HttpRequestRewindExtensions.EnableBuffering(Microsoft.AspNetCore.Http.HttpRequest,System.Int32,System.Int64)">
  77. <summary>
  78. Ensure the <paramref name="request"/> <see cref="P:Microsoft.AspNetCore.Http.HttpRequest.Body"/> can be read multiple times. Normally
  79. buffers request bodies in memory; writes requests larger than <paramref name="bufferThreshold"/> bytes to
  80. disk.
  81. </summary>
  82. <param name="request">The <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> to prepare.</param>
  83. <param name="bufferThreshold">
  84. The maximum size in bytes of the in-memory <see cref="T:System.Buffers.ArrayPool`1"/> used to buffer the
  85. stream. Larger request bodies are written to disk.
  86. </param>
  87. <param name="bufferLimit">
  88. The maximum size in bytes of the request body. An attempt to read beyond this limit will cause an
  89. <see cref="T:System.IO.IOException"/>.
  90. </param>
  91. <remarks>
  92. Temporary files for larger requests are written to the location named in the <c>ASPNETCORE_TEMP</c>
  93. environment variable, if any. If that environment variable is not defined, these files are written to the
  94. current user's temporary folder. Files are automatically deleted at the end of their associated requests.
  95. </remarks>
  96. </member>
  97. <member name="T:Microsoft.AspNetCore.Http.Features.DefaultSessionFeature">
  98. <summary>
  99. This type exists only for the purpose of unit testing where the user can directly set the
  100. <see cref="P:Microsoft.AspNetCore.Http.HttpContext.Session"/> property without the need for creating a <see cref="T:Microsoft.AspNetCore.Http.Features.ISessionFeature"/>.
  101. </summary>
  102. </member>
  103. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.BufferBody">
  104. <summary>
  105. Enables full request body buffering. Use this if multiple components need to read the raw stream.
  106. The default value is false.
  107. </summary>
  108. </member>
  109. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.MemoryBufferThreshold">
  110. <summary>
  111. If <see cref="P:Microsoft.AspNetCore.Http.Features.FormOptions.BufferBody"/> is enabled, this many bytes of the body will be buffered in memory.
  112. If this threshold is exceeded then the buffer will be moved to a temp file on disk instead.
  113. This also applies when buffering individual multipart section bodies.
  114. </summary>
  115. </member>
  116. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.BufferBodyLengthLimit">
  117. <summary>
  118. If <see cref="P:Microsoft.AspNetCore.Http.Features.FormOptions.BufferBody"/> is enabled, this is the limit for the total number of bytes that will
  119. be buffered. Forms that exceed this limit will throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  120. </summary>
  121. </member>
  122. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.ValueCountLimit">
  123. <summary>
  124. A limit for the number of form entries to allow.
  125. Forms that exceed this limit will throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  126. </summary>
  127. </member>
  128. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.KeyLengthLimit">
  129. <summary>
  130. A limit on the length of individual keys. Forms containing keys that exceed this limit will
  131. throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  132. </summary>
  133. </member>
  134. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.ValueLengthLimit">
  135. <summary>
  136. A limit on the length of individual form values. Forms containing values that exceed this
  137. limit will throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  138. </summary>
  139. </member>
  140. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.MultipartBoundaryLengthLimit">
  141. <summary>
  142. A limit for the length of the boundary identifier. Forms with boundaries that exceed this
  143. limit will throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  144. </summary>
  145. </member>
  146. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.MultipartHeadersCountLimit">
  147. <summary>
  148. A limit for the number of headers to allow in each multipart section. Headers with the same name will
  149. be combined. Form sections that exceed this limit will throw an <see cref="T:System.IO.InvalidDataException"/>
  150. when parsed.
  151. </summary>
  152. </member>
  153. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.MultipartHeadersLengthLimit">
  154. <summary>
  155. A limit for the total length of the header keys and values in each multipart section.
  156. Form sections that exceed this limit will throw an <see cref="T:System.IO.InvalidDataException"/> when parsed.
  157. </summary>
  158. </member>
  159. <member name="P:Microsoft.AspNetCore.Http.Features.FormOptions.MultipartBodyLengthLimit">
  160. <summary>
  161. A limit for the length of each multipart body. Forms sections that exceed this limit will throw an
  162. <see cref="T:System.IO.InvalidDataException"/> when parsed.
  163. </summary>
  164. </member>
  165. <member name="T:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature">
  166. <summary>
  167. Default implementation of <see cref="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature"/>.
  168. </summary>
  169. </member>
  170. <member name="M:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature.#ctor(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
  171. <summary>
  172. Initializes a new <see cref="T:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature"/> instance.
  173. </summary>
  174. <param name="features">
  175. <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> containing all defined features, including this
  176. <see cref="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature"/> and the <see cref="T:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature"/>.
  177. </param>
  178. </member>
  179. <member name="M:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature.#ctor(Microsoft.AspNetCore.Http.Features.IFeatureCollection,Microsoft.Extensions.ObjectPool.ObjectPool{System.Text.StringBuilder})">
  180. <summary>
  181. Initializes a new <see cref="T:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature"/> instance.
  182. </summary>
  183. <param name="features">
  184. <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> containing all defined features, including this
  185. <see cref="T:Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature"/> and the <see cref="T:Microsoft.AspNetCore.Http.Features.IHttpResponseFeature"/>.
  186. </param>
  187. <param name="builderPool">The <see cref="T:Microsoft.Extensions.ObjectPool.ObjectPool`1"/>, if available.</param>
  188. </member>
  189. <member name="P:Microsoft.AspNetCore.Http.Features.ResponseCookiesFeature.Cookies">
  190. <inheritdoc />
  191. </member>
  192. <member name="T:Microsoft.AspNetCore.Http.FormCollection">
  193. <summary>
  194. Contains the parsed form values.
  195. </summary>
  196. </member>
  197. <member name="P:Microsoft.AspNetCore.Http.FormCollection.Item(System.String)">
  198. <summary>
  199. Get or sets the associated value from the collection as a single string.
  200. </summary>
  201. <param name="key">The header name.</param>
  202. <returns>the associated value from the collection as a StringValues or StringValues.Empty if the key is not present.</returns>
  203. </member>
  204. <member name="P:Microsoft.AspNetCore.Http.FormCollection.Count">
  205. <summary>
  206. Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" />;.
  207. </summary>
  208. <returns>The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" />.</returns>
  209. </member>
  210. <member name="M:Microsoft.AspNetCore.Http.FormCollection.ContainsKey(System.String)">
  211. <summary>
  212. Determines whether the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains a specific key.
  213. </summary>
  214. <param name="key">The key.</param>
  215. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains a specific key; otherwise, false.</returns>
  216. </member>
  217. <member name="M:Microsoft.AspNetCore.Http.FormCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)">
  218. <summary>
  219. Retrieves a value from the dictionary.
  220. </summary>
  221. <param name="key">The header name.</param>
  222. <param name="value">The value.</param>
  223. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains the key; otherwise, false.</returns>
  224. </member>
  225. <member name="M:Microsoft.AspNetCore.Http.FormCollection.GetEnumerator">
  226. <summary>
  227. Returns an struct enumerator that iterates through a collection without boxing and is also used via the <see cref="T:Microsoft.AspNetCore.Http.IFormCollection" /> interface.
  228. </summary>
  229. <returns>An <see cref="T:Microsoft.AspNetCore.Http.FormCollection.Enumerator" /> object that can be used to iterate through the collection.</returns>
  230. </member>
  231. <member name="M:Microsoft.AspNetCore.Http.FormCollection.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,Microsoft#Extensions#Primitives#StringValues}}#GetEnumerator">
  232. <summary>
  233. Returns an enumerator that iterates through a collection, boxes in non-empty path.
  234. </summary>
  235. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  236. </member>
  237. <member name="M:Microsoft.AspNetCore.Http.FormCollection.System#Collections#IEnumerable#GetEnumerator">
  238. <summary>
  239. Returns an enumerator that iterates through a collection, boxes in non-empty path.
  240. </summary>
  241. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  242. </member>
  243. <member name="T:Microsoft.AspNetCore.Http.HeaderDictionary">
  244. <summary>
  245. Represents a wrapper for RequestHeaders and ResponseHeaders.
  246. </summary>
  247. </member>
  248. <member name="P:Microsoft.AspNetCore.Http.HeaderDictionary.Item(System.String)">
  249. <summary>
  250. Get or sets the associated value from the collection as a single string.
  251. </summary>
  252. <param name="key">The header name.</param>
  253. <returns>the associated value from the collection as a StringValues or StringValues.Empty if the key is not present.</returns>
  254. </member>
  255. <member name="P:Microsoft.AspNetCore.Http.HeaderDictionary.System#Collections#Generic#IDictionary{System#String,Microsoft#Extensions#Primitives#StringValues}#Item(System.String)">
  256. <summary>
  257. Throws KeyNotFoundException if the key is not present.
  258. </summary>
  259. <param name="key">The header name.</param>
  260. <returns></returns>
  261. </member>
  262. <member name="P:Microsoft.AspNetCore.Http.HeaderDictionary.Count">
  263. <summary>
  264. Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" />;.
  265. </summary>
  266. <returns>The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" />.</returns>
  267. </member>
  268. <member name="P:Microsoft.AspNetCore.Http.HeaderDictionary.IsReadOnly">
  269. <summary>
  270. Gets a value that indicates whether the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> is in read-only mode.
  271. </summary>
  272. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> is in read-only mode; otherwise, false.</returns>
  273. </member>
  274. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues})">
  275. <summary>
  276. Adds a new list of items to the collection.
  277. </summary>
  278. <param name="item">The item to add.</param>
  279. </member>
  280. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Add(System.String,Microsoft.Extensions.Primitives.StringValues)">
  281. <summary>
  282. Adds the given header and values to the collection.
  283. </summary>
  284. <param name="key">The header name.</param>
  285. <param name="value">The header values.</param>
  286. </member>
  287. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Clear">
  288. <summary>
  289. Clears the entire list of objects.
  290. </summary>
  291. </member>
  292. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues})">
  293. <summary>
  294. Returns a value indicating whether the specified object occurs within this collection.
  295. </summary>
  296. <param name="item">The item.</param>
  297. <returns>true if the specified object occurs within this collection; otherwise, false.</returns>
  298. </member>
  299. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.ContainsKey(System.String)">
  300. <summary>
  301. Determines whether the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains a specific key.
  302. </summary>
  303. <param name="key">The key.</param>
  304. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains a specific key; otherwise, false.</returns>
  305. </member>
  306. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues}[],System.Int32)">
  307. <summary>
  308. Copies the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> elements to a one-dimensional Array instance at the specified index.
  309. </summary>
  310. <param name="array">The one-dimensional Array that is the destination of the specified objects copied from the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" />.</param>
  311. <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
  312. </member>
  313. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,Microsoft.Extensions.Primitives.StringValues})">
  314. <summary>
  315. Removes the given item from the the collection.
  316. </summary>
  317. <param name="item">The item.</param>
  318. <returns>true if the specified object was removed from the collection; otherwise, false.</returns>
  319. </member>
  320. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.Remove(System.String)">
  321. <summary>
  322. Removes the given header from the collection.
  323. </summary>
  324. <param name="key">The header name.</param>
  325. <returns>true if the specified object was removed from the collection; otherwise, false.</returns>
  326. </member>
  327. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)">
  328. <summary>
  329. Retrieves a value from the dictionary.
  330. </summary>
  331. <param name="key">The header name.</param>
  332. <param name="value">The value.</param>
  333. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary" /> contains the key; otherwise, false.</returns>
  334. </member>
  335. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.GetEnumerator">
  336. <summary>
  337. Returns an enumerator that iterates through a collection.
  338. </summary>
  339. <returns>An <see cref="T:Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator" /> object that can be used to iterate through the collection.</returns>
  340. </member>
  341. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,Microsoft#Extensions#Primitives#StringValues}}#GetEnumerator">
  342. <summary>
  343. Returns an enumerator that iterates through a collection.
  344. </summary>
  345. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  346. </member>
  347. <member name="M:Microsoft.AspNetCore.Http.HeaderDictionary.System#Collections#IEnumerable#GetEnumerator">
  348. <summary>
  349. Returns an enumerator that iterates through a collection.
  350. </summary>
  351. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  352. </member>
  353. <member name="P:Microsoft.AspNetCore.Http.Internal.DefaultConnectionInfo.Id">
  354. <inheritdoc />
  355. </member>
  356. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.ContentDisposition">
  357. <summary>
  358. Gets the raw Content-Disposition header of the uploaded file.
  359. </summary>
  360. </member>
  361. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.ContentType">
  362. <summary>
  363. Gets the raw Content-Type header of the uploaded file.
  364. </summary>
  365. </member>
  366. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.Headers">
  367. <summary>
  368. Gets the header dictionary of the uploaded file.
  369. </summary>
  370. </member>
  371. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.Length">
  372. <summary>
  373. Gets the file length in bytes.
  374. </summary>
  375. </member>
  376. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.Name">
  377. <summary>
  378. Gets the name from the Content-Disposition header.
  379. </summary>
  380. </member>
  381. <member name="P:Microsoft.AspNetCore.Http.Internal.FormFile.FileName">
  382. <summary>
  383. Gets the file name from the Content-Disposition header.
  384. </summary>
  385. </member>
  386. <member name="M:Microsoft.AspNetCore.Http.Internal.FormFile.OpenReadStream">
  387. <summary>
  388. Opens the request stream for reading the uploaded file.
  389. </summary>
  390. </member>
  391. <member name="M:Microsoft.AspNetCore.Http.Internal.FormFile.CopyTo(System.IO.Stream)">
  392. <summary>
  393. Copies the contents of the uploaded file to the <paramref name="target"/> stream.
  394. </summary>
  395. <param name="target">The stream to copy the file contents to.</param>
  396. </member>
  397. <member name="M:Microsoft.AspNetCore.Http.Internal.FormFile.CopyToAsync(System.IO.Stream,System.Threading.CancellationToken)">
  398. <summary>
  399. Asynchronously copies the contents of the uploaded file to the <paramref name="target"/> stream.
  400. </summary>
  401. <param name="target">The stream to copy the file contents to.</param>
  402. <param name="cancellationToken"></param>
  403. </member>
  404. <member name="T:Microsoft.AspNetCore.Http.Internal.QueryCollection">
  405. <summary>
  406. The HttpRequest query string collection
  407. </summary>
  408. </member>
  409. <member name="P:Microsoft.AspNetCore.Http.Internal.QueryCollection.Item(System.String)">
  410. <summary>
  411. Get or sets the associated value from the collection as a single string.
  412. </summary>
  413. <param name="key">The key name.</param>
  414. <returns>the associated value from the collection as a StringValues or StringValues.Empty if the key is not present.</returns>
  415. </member>
  416. <member name="P:Microsoft.AspNetCore.Http.Internal.QueryCollection.Count">
  417. <summary>
  418. Gets the number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection" />;.
  419. </summary>
  420. <returns>The number of elements contained in the <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection" />.</returns>
  421. </member>
  422. <member name="M:Microsoft.AspNetCore.Http.Internal.QueryCollection.ContainsKey(System.String)">
  423. <summary>
  424. Determines whether the <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection" /> contains a specific key.
  425. </summary>
  426. <param name="key">The key.</param>
  427. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection" /> contains a specific key; otherwise, false.</returns>
  428. </member>
  429. <member name="M:Microsoft.AspNetCore.Http.Internal.QueryCollection.TryGetValue(System.String,Microsoft.Extensions.Primitives.StringValues@)">
  430. <summary>
  431. Retrieves a value from the collection.
  432. </summary>
  433. <param name="key">The key.</param>
  434. <param name="value">The value.</param>
  435. <returns>true if the <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection" /> contains the key; otherwise, false.</returns>
  436. </member>
  437. <member name="M:Microsoft.AspNetCore.Http.Internal.QueryCollection.GetEnumerator">
  438. <summary>
  439. Returns an enumerator that iterates through a collection.
  440. </summary>
  441. <returns>An <see cref="T:Microsoft.AspNetCore.Http.Internal.QueryCollection.Enumerator" /> object that can be used to iterate through the collection.</returns>
  442. </member>
  443. <member name="M:Microsoft.AspNetCore.Http.Internal.QueryCollection.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,Microsoft#Extensions#Primitives#StringValues}}#GetEnumerator">
  444. <summary>
  445. Returns an enumerator that iterates through a collection.
  446. </summary>
  447. <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> object that can be used to iterate through the collection.</returns>
  448. </member>
  449. <member name="M:Microsoft.AspNetCore.Http.Internal.QueryCollection.System#Collections#IEnumerable#GetEnumerator">
  450. <summary>
  451. Returns an enumerator that iterates through a collection.
  452. </summary>
  453. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  454. </member>
  455. <member name="T:Microsoft.AspNetCore.Http.Internal.ReferenceReadStream">
  456. <summary>
  457. A Stream that wraps another stream starting at a certain offset and reading for the given length.
  458. </summary>
  459. </member>
  460. <member name="M:Microsoft.AspNetCore.Http.Internal.RequestCookieCollection.GetEnumerator">
  461. <summary>
  462. Returns an struct enumerator that iterates through a collection without boxing.
  463. </summary>
  464. <returns>An <see cref="T:Microsoft.AspNetCore.Http.Internal.RequestCookieCollection.Enumerator" /> object that can be used to iterate through the collection.</returns>
  465. </member>
  466. <member name="M:Microsoft.AspNetCore.Http.Internal.RequestCookieCollection.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String,System#String}}#GetEnumerator">
  467. <summary>
  468. Returns an enumerator that iterates through a collection, boxes in non-empty path.
  469. </summary>
  470. <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> object that can be used to iterate through the collection.</returns>
  471. </member>
  472. <member name="M:Microsoft.AspNetCore.Http.Internal.RequestCookieCollection.System#Collections#IEnumerable#GetEnumerator">
  473. <summary>
  474. Returns an enumerator that iterates through a collection, boxes in non-empty path.
  475. </summary>
  476. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  477. </member>
  478. <member name="T:Microsoft.AspNetCore.Http.Internal.ResponseCookies">
  479. <summary>
  480. A wrapper for the response Set-Cookie header.
  481. </summary>
  482. </member>
  483. <member name="M:Microsoft.AspNetCore.Http.Internal.ResponseCookies.#ctor(Microsoft.AspNetCore.Http.IHeaderDictionary,Microsoft.Extensions.ObjectPool.ObjectPool{System.Text.StringBuilder})">
  484. <summary>
  485. Create a new wrapper.
  486. </summary>
  487. <param name="headers">The <see cref="T:Microsoft.AspNetCore.Http.IHeaderDictionary"/> for the response.</param>
  488. <param name="builderPool">The <see cref="T:Microsoft.Extensions.ObjectPool.ObjectPool`1"/>, if available.</param>
  489. </member>
  490. <member name="M:Microsoft.AspNetCore.Http.Internal.ResponseCookies.Append(System.String,System.String)">
  491. <inheritdoc />
  492. </member>
  493. <member name="M:Microsoft.AspNetCore.Http.Internal.ResponseCookies.Append(System.String,System.String,Microsoft.AspNetCore.Http.CookieOptions)">
  494. <inheritdoc />
  495. </member>
  496. <member name="M:Microsoft.AspNetCore.Http.Internal.ResponseCookies.Delete(System.String)">
  497. <inheritdoc />
  498. </member>
  499. <member name="M:Microsoft.AspNetCore.Http.Internal.ResponseCookies.Delete(System.String,Microsoft.AspNetCore.Http.CookieOptions)">
  500. <inheritdoc />
  501. </member>
  502. <member name="M:Microsoft.AspNetCore.Http.RequestFormReaderExtensions.ReadFormAsync(Microsoft.AspNetCore.Http.HttpRequest,Microsoft.AspNetCore.Http.Features.FormOptions,System.Threading.CancellationToken)">
  503. <summary>
  504. Read the request body as a form with the given options. These options will only be used
  505. if the form has not already been read.
  506. </summary>
  507. <param name="request">The request.</param>
  508. <param name="options">Options for reading the form.</param>
  509. <param name="cancellationToken"></param>
  510. <returns>The parsed form.</returns>
  511. </member>
  512. </members>
  513. </doc>