-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
System.Net.Http.Formatting.xml
2094 lines (2094 loc) · 186 KB
/
System.Net.Http.Formatting.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Net.Http.Formatting</name>
</assembly>
<members>
<member name="T:System.Net.Http.ByteRangeStreamContent">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. The <see cref="T:System.Net.Http.ByteRangeStreamContent" /> supports one or more byte ranges regardless of whether the ranges are consecutive or not. If there is only one range then a single partial response body containing a Content-Range header is generated. If there are more than one ranges then a multipart/byteranges response is generated where each body part contains a range indicated by the associated Content-Range header field. </summary>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.Net.Http.Headers.MediaTypeHeaderValue,System.Int32)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
<param name="bufferSize">The buffer size used when copying the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.String)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.#ctor(System.IO.Stream,System.Net.Http.Headers.RangeHeaderValue,System.String,System.Int32)">
<summary>
<see cref="T:System.Net.Http.HttpContent" /> implementation which provides a byte range view over a stream used to generate HTTP 206 (Partial Content) byte range responses. If none of the requested ranges overlap with the current extend of the selected resource represented by the content parameter then an <see cref="T:System.Net.Http.InvalidByteRangeException" /> is thrown indicating the valid Content-Range of the content. </summary>
<param name="content">The stream over which to generate a byte range view.</param>
<param name="range">The range or ranges, typically obtained from the Range HTTP request header field.</param>
<param name="mediaType">The media type of the content stream.</param>
<param name="bufferSize">The buffer size used when copying the content stream.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.Dispose(System.Boolean)">
<summary>Releases the resources used by the current instance of the <see cref="T:System.Net.Http.ByteRangeStreamContent" /> class.</summary>
<param name="disposing">true to release managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary>Asynchronously serialize and write the byte range to an HTTP content stream.</summary>
<returns>The task object representing the asynchronous operation.</returns>
<param name="stream">The target stream.</param>
<param name="context">Information about the transport.</param>
</member>
<member name="M:System.Net.Http.ByteRangeStreamContent.TryComputeLength(System.Int64@)">
<summary>Determines whether a byte array has a valid length in bytes.</summary>
<returns>true if length is a valid length; otherwise, false.</returns>
<param name="length">The length in bytes of the byte array.</param>
</member>
<member name="T:System.Net.Http.HttpClientExtensions">
<summary> Extension methods that aid in making formatted requests using <see cref="T:System.Net.Http.HttpClient" />. </summary>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PostAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<summary> Sends a POST request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsJsonAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as JSON. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsXmlAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with the given value serialized as XML. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.String,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.String,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="mediaType">The authoritative value of the request's content's Content-Type header. Can be null in which case the <paramref name="formatter">formatter's</paramref> default content type will be used.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="M:System.Net.Http.HttpClientExtensions.PutAsync``1(System.Net.Http.HttpClient,System.Uri,``0,System.Net.Http.Formatting.MediaTypeFormatter,System.Threading.CancellationToken)">
<summary> Sends a PUT request as an asynchronous operation to the specified Uri with value serialized using the given formatter. </summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="client">The client used to make the request.</param>
<param name="requestUri">The Uri the request is sent to.</param>
<param name="value">The value that will be placed in the request's entity body.</param>
<param name="formatter">The formatter used to serialize the value.</param>
<param name="cancellationToken">A cancellation token that can be used by other objects or threads to receive notice of cancellation.</param>
<typeparam name="T">The type of value.</typeparam>
</member>
<member name="T:System.Net.Http.HttpClientFactory">
<summary>Represents the factory for creating new instance of <see cref="T:System.Net.Http.HttpClient" />.</summary>
</member>
<member name="M:System.Net.Http.HttpClientFactory.Create(System.Net.Http.DelegatingHandler[])">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" />.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" />.</returns>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="M:System.Net.Http.HttpClientFactory.Create(System.Net.Http.HttpMessageHandler,System.Net.Http.DelegatingHandler[])">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" />.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" />.</returns>
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="M:System.Net.Http.HttpClientFactory.CreatePipeline(System.Net.Http.HttpMessageHandler,System.Collections.Generic.IEnumerable{System.Net.Http.DelegatingHandler})">
<summary>Creates a new instance of the <see cref="T:System.Net.Http.HttpClient" /> which should be pipelined.</summary>
<returns>A new instance of the <see cref="T:System.Net.Http.HttpClient" /> which should be pipelined.</returns>
<param name="innerHandler">The inner handler which is responsible for processing the HTTP response messages.</param>
<param name="handlers">The list of HTTP handler that delegates the processing of HTTP response messages to another handler.</param>
</member>
<member name="T:System.Net.Http.HttpContentExtensions">
<summary>Specifies extension methods to allow strongly typed objects to be read from HttpContent instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent)">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTyepFormatter instances to use.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger)">
<summary> Returns a Task that will yield an object of the specified type <typeparamref name="T" /> from the content instance. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync``1(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the object to read.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type)">
<summary> Returns a Task that will yield an object of the specified type from the content instance. </summary>
<returns>A Task that will yield an object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter})">
<summary> Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger)">
<summary> Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content. </summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Net.Http.Formatting.IFormatterLogger,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="formatterLogger">The IFormatterLogger to log events to.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Collections.Generic.IEnumerable{System.Net.Http.Formatting.MediaTypeFormatter},System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="formatters">The collection of MediaTypeFormatter instances to use.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentExtensions.ReadAsAsync(System.Net.Http.HttpContent,System.Type,System.Threading.CancellationToken)">
<summary>Returns a Task that will yield an object of the specified type from the content instance using one of the provided formatters to deserialize the content.</summary>
<returns>An object instance of the specified type.</returns>
<param name="content">The HttpContent instance from which to read.</param>
<param name="type">The type of the object to read.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="T:System.Net.Http.HttpContentFormDataExtensions">
<summary>Extension methods to read HTML form URL-encoded datafrom <see cref="T:System.Net.Http.HttpContent" /> instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.IsFormData(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTML form URL-encoded data.</summary>
<returns>true if the specified content is HTML form URL-encoded data; otherwise, false.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.ReadAsFormDataAsync(System.Net.Http.HttpContent)">
<summary>Asynchronously reads HTML form URL-encoded from an <see cref="T:System.Net.Http.HttpContent" /> instance and stores the results in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentFormDataExtensions.ReadAsFormDataAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Asynchronously reads HTML form URL-encoded from an <see cref="T:System.Net.Http.HttpContent" /> instance and stores the results in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
<returns>A task object representing the asynchronous operation.</returns>
<param name="content">The content.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="T:System.Net.Http.HttpContentMessageExtensions">
<summary>Provides extension methods to read <see cref="T:System.Net.Http.HttpRequestMessage" /> and <see cref="T:System.Net.Http.HttpResponseMessage" /> entities from <see cref="T:System.Net.Http.HttpContent" /> instances. </summary>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.IsHttpRequestMessageContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTTP request message content.</summary>
<returns>true if the specified content is HTTP message content; otherwise, false.</returns>
<param name="content">The content to check.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.IsHttpResponseMessageContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is HTTP response message content.</summary>
<returns>true if the specified content is HTTP message content; otherwise, false.</returns>
<param name="content">The content to check.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
<param name="bufferSize">The size of the buffer.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpRequestMessage" />.</summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpRequestMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="uriScheme">The URI scheme to use for the request URI.</param>
<param name="bufferSize">The size of the buffer.</param>
<param name="maxHeaderSize">The maximum length of the HTTP header.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.String,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpRequestMessageAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent)">
<summary> Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />. </summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="bufferSize">The size of the buffer.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Int32)">
<summary>Reads the <see cref="T:System.Net.Http.HttpContent" /> as an <see cref="T:System.Net.Http.HttpResponseMessage" />.</summary>
<returns>The parsed <see cref="T:System.Net.Http.HttpResponseMessage" /> instance.</returns>
<param name="content">The content to read.</param>
<param name="bufferSize">The size of the buffer.</param>
<param name="maxHeaderSize">The maximum length of the HTTP header.</param>
</member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Int32,System.Threading.CancellationToken)"></member>
<member name="M:System.Net.Http.HttpContentMessageExtensions.ReadAsHttpResponseMessageAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)"></member>
<member name="T:System.Net.Http.HttpContentMultipartExtensions">
<summary>Extension methods to read MIME multipart entities from <see cref="T:System.Net.Http.HttpContent" /> instances.</summary>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.IsMimeMultipartContent(System.Net.Http.HttpContent)">
<summary>Determines whether the specified content is MIME multipart content.</summary>
<returns>true if the specified content is MIME multipart content; otherwise, false.</returns>
<param name="content">The content.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.IsMimeMultipartContent(System.Net.Http.HttpContent,System.String)">
<summary>Determines whether the specified content is MIME multipart content with the specified subtype.</summary>
<returns>true if the specified content is MIME multipart content with the specified subtype; otherwise, false.</returns>
<param name="content">The content.</param>
<param name="subtype">The MIME multipart subtype to match.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync(System.Net.Http.HttpContent)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync(System.Net.Http.HttpContent,System.Threading.CancellationToken)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
<typeparam name="T">The type of the MIME multipart.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0,System.Int32)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
<param name="bufferSize">Size of the buffer used to read the contents.</param>
<typeparam name="T">The type of the MIME multipart.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0,System.Int32,System.Threading.CancellationToken)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written and bufferSize as read buffer size.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
<param name="bufferSize">Size of the buffer used to read the contents.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the MIME multipart.</typeparam>
</member>
<member name="M:System.Net.Http.HttpContentMultipartExtensions.ReadAsMultipartAsync``1(System.Net.Http.HttpContent,``0,System.Threading.CancellationToken)">
<summary>Reads all body parts within a MIME multipart message and produces a set of <see cref="T:System.Net.Http.HttpContent" /> instances as a result using the streamProvider instance to determine where the contents of each body part is written.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> representing the tasks of getting the collection of <see cref="T:System.Net.Http.HttpContent" /> instances where each instance represents a body part.</returns>
<param name="content">An existing <see cref="T:System.Net.Http.HttpContent" /> instance to use for the object's content.</param>
<param name="streamProvider">A stream provider providing output streams for where to write body parts as they are parsed.</param>
<param name="cancellationToken">The token to cancel the operation.</param>
<typeparam name="T">The type of the MIME multipart.</typeparam>
</member>
<member name="T:System.Net.Http.HttpMessageContent">
<summary> Derived <see cref="T:System.Net.Http.HttpContent" /> class which can encapsulate an <see cref="P:System.Net.Http.HttpMessageContent.HttpResponseMessage" /> or an <see cref="P:System.Net.Http.HttpMessageContent.HttpRequestMessage" /> as an entity with media type "application/http". </summary>
</member>
<member name="M:System.Net.Http.HttpMessageContent.#ctor(System.Net.Http.HttpRequestMessage)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageContent" /> class encapsulating an <see cref="P:System.Net.Http.HttpMessageContent.HttpRequestMessage" />. </summary>
<param name="httpRequest">The <see cref="P:System.Net.Http.HttpMessageContent.HttpResponseMessage" /> instance to encapsulate.</param>
</member>
<member name="M:System.Net.Http.HttpMessageContent.#ctor(System.Net.Http.HttpResponseMessage)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.HttpMessageContent" /> class encapsulating an <see cref="P:System.Net.Http.HttpMessageContent.HttpResponseMessage" />. </summary>
<param name="httpResponse">The <see cref="P:System.Net.Http.HttpMessageContent.HttpResponseMessage" /> instance to encapsulate.</param>
</member>
<member name="M:System.Net.Http.HttpMessageContent.Dispose(System.Boolean)">
<summary> Releases unmanaged and - optionally - managed resources </summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:System.Net.Http.HttpMessageContent.HttpRequestMessage">
<summary> Gets the HTTP request message. </summary>
</member>
<member name="P:System.Net.Http.HttpMessageContent.HttpResponseMessage">
<summary> Gets the HTTP response message. </summary>
</member>
<member name="M:System.Net.Http.HttpMessageContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary> Asynchronously serializes the object's content to the given stream. </summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> instance that is asynchronously serializing the object's content.</returns>
<param name="stream">The <see cref="T:System.IO.Stream" /> to which to write.</param>
<param name="context">The associated <see cref="T:System.Net.TransportContext" />.</param>
</member>
<member name="M:System.Net.Http.HttpMessageContent.TryComputeLength(System.Int64@)">
<summary> Computes the length of the stream if possible. </summary>
<returns>true if the length has been computed; otherwise false.</returns>
<param name="length">The computed length of the stream.</param>
</member>
<member name="T:System.Net.Http.HttpRequestHeadersExtensions">
<summary>Provides extension methods for the <see cref="T:System.Net.Http.Headers.HttpRequestHeaders" /> class.</summary>
</member>
<member name="M:System.Net.Http.HttpRequestHeadersExtensions.GetCookies(System.Net.Http.Headers.HttpRequestHeaders)">
<summary>Gets any cookie headers present in the request.</summary>
<returns>A collection of <see cref="T:System.Net.Http.Headers.CookieHeaderValue" /> instances.</returns>
<param name="headers">The request headers.</param>
</member>
<member name="M:System.Net.Http.HttpRequestHeadersExtensions.GetCookies(System.Net.Http.Headers.HttpRequestHeaders,System.String)">
<summary>Gets any cookie headers present in the request that contain a cookie state whose name that matches the specified value.</summary>
<returns>A collection of <see cref="T:System.Net.Http.Headers.CookieHeaderValue" /> instances.</returns>
<param name="headers">The request headers.</param>
<param name="name">The cookie state name to match.</param>
</member>
<member name="M:System.Net.Http.HttpRequestMessageExtensions.CreateResponse(System.Net.Http.HttpRequestMessage)"></member>
<member name="M:System.Net.Http.HttpRequestMessageExtensions.CreateResponse(System.Net.Http.HttpRequestMessage,System.Net.HttpStatusCode)"></member>
<member name="T:System.Net.Http.HttpResponseHeadersExtensions">
<summary> Provides extension methods for the <see cref="T:System.Net.Http.Headers.HttpResponseHeaders" /> class. </summary>
</member>
<member name="M:System.Net.Http.HttpResponseHeadersExtensions.AddCookies(System.Net.Http.Headers.HttpResponseHeaders,System.Collections.Generic.IEnumerable{System.Net.Http.Headers.CookieHeaderValue})">
<summary> Adds cookies to a response. Each Set-Cookie header is represented as one <see cref="T:System.Net.Http.Headers.CookieHeaderValue" /> instance. A <see cref="T:System.Net.Http.Headers.CookieHeaderValue" /> contains information about the domain, path, and other cookie information as well as one or more <see cref="T:System.Net.Http.Headers.CookieState" /> instances. Each <see cref="T:System.Net.Http.Headers.CookieState" /> instance contains a cookie name and whatever cookie state is associate with that name. The state is in the form of a <see cref="T:System.Collections.Specialized.NameValueCollection" /> which on the wire is encoded as HTML Form URL-encoded data. This representation allows for multiple related "cookies" to be carried within the same Cookie header while still providing separation between each cookie state. A sample Cookie header is shown below. In this example, there are two <see cref="T:System.Net.Http.Headers.CookieState" /> with names state1 and state2 respectively. Further, each cookie state contains two name/value pairs (name1/value1 and name2/value2) and (name3/value3 and name4/value4). <code> Set-Cookie: state1:name1=value1&amp;name2=value2; state2:name3=value3&amp;name4=value4; domain=domain1; path=path1; </code></summary>
<param name="headers">The response headers</param>
<param name="cookies">The cookie values to add to the response.</param>
</member>
<member name="T:System.Net.Http.InvalidByteRangeException">
<summary> An exception thrown by <see cref="T:System.Net.Http.ByteRangeStreamContent" /> in case none of the requested ranges overlap with the current extend of the selected resource. The current extend of the resource is indicated in the ContentRange property. </summary>
</member>
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
</member>
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
</member>
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
</member>
<member name="M:System.Net.Http.InvalidByteRangeException.#ctor(System.Net.Http.Headers.ContentRangeHeaderValue,System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.InvalidByteRangeException" /> class.</summary>
</member>
<member name="P:System.Net.Http.InvalidByteRangeException.ContentRange">
<summary> The current extend of the resource indicated in terms of a ContentRange header field. </summary>
</member>
<member name="T:System.Net.Http.MultipartFileData">
<summary>Represents a multipart file data.</summary>
</member>
<member name="M:System.Net.Http.MultipartFileData.#ctor(System.Net.Http.Headers.HttpContentHeaders,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFileData" /> class.</summary>
<param name="headers">The headers of the multipart file data.</param>
<param name="localFileName">The name of the local file for the multipart file data.</param>
</member>
<member name="P:System.Net.Http.MultipartFileData.Headers">
<summary>Gets or sets the headers of the multipart file data.</summary>
<returns>The headers of the multipart file data.</returns>
</member>
<member name="P:System.Net.Http.MultipartFileData.LocalFileName">
<summary>Gets or sets the name of the local file for the multipart file data.</summary>
<returns>The name of the local file for the multipart file data.</returns>
</member>
<member name="T:System.Net.Http.MultipartFileStreamProvider">
<summary>Represents an <see cref="T:System.Net.Http.IMultipartStreamProvider" /> suited for writing each MIME body parts of the MIME multipart message to a file using a <see cref="T:System.IO.FileStream" />.</summary>
</member>
<member name="M:System.Net.Http.MultipartFileStreamProvider.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFileStreamProvider" /> class.</summary>
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
</member>
<member name="M:System.Net.Http.MultipartFileStreamProvider.#ctor(System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFileStreamProvider" /> class.</summary>
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
<param name="bufferSize">The number of bytes buffered for writes to the file.</param>
</member>
<member name="P:System.Net.Http.MultipartFileStreamProvider.BufferSize">
<summary>Gets or sets the number of bytes buffered for writes to the file.</summary>
<returns>The number of bytes buffered for writes to the file.</returns>
</member>
<member name="P:System.Net.Http.MultipartFileStreamProvider.FileData">
<summary>Gets or sets the multipart file data.</summary>
<returns>The multipart file data.</returns>
</member>
<member name="M:System.Net.Http.MultipartFileStreamProvider.GetLocalFileName(System.Net.Http.Headers.HttpContentHeaders)">
<summary>Gets the name of the local file which will be combined with the root path to create an absolute file name where the contents of the current MIME body part will be stored.</summary>
<returns>A relative filename with no path component.</returns>
<param name="headers">The headers for the current MIME body part.</param>
</member>
<member name="M:System.Net.Http.MultipartFileStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Gets the stream instance where the message body part is written to.</summary>
<returns>The <see cref="T:System.IO.Stream" /> instance where the message body part is written to.</returns>
<param name="parent">The content of HTTP.</param>
<param name="headers">The header fields describing the body part.</param>
</member>
<member name="P:System.Net.Http.MultipartFileStreamProvider.RootPath">
<summary>Gets or sets the root path where the content of MIME multipart body parts are written to.</summary>
<returns>The root path where the content of MIME multipart body parts are written to.</returns>
</member>
<member name="T:System.Net.Http.MultipartFormDataRemoteStreamProvider">
<summary>A <see cref="T:System.Net.Http.MultipartStreamProvider" /> implementation suited for use with HTML file uploads for writing file content to a remote storage <see cref="T:System.IO.Stream" />. The stream provider looks at the Content-Disposition header field and determines an output remote <see cref="T:System.IO.Stream" /> based on the presence of a filename parameter. If a filename parameter is present in the Content-Disposition header field, then the body part is written to a remote <see cref="T:System.IO.Stream" /> provided by <see cref="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.GetRemoteStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)" />. Otherwise it is written to a <see cref="T:System.IO.MemoryStream" />.</summary>
</member>
<member name="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataRemoteStreamProvider" /> class.</summary>
</member>
<member name="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.ExecutePostProcessingAsync">
<summary>Read the non-file contents as form data.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the post processing.</returns>
</member>
<member name="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.ExecutePostProcessingAsync(System.Threading.CancellationToken)">
<summary>Read the non-file contents as form data.</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> representing the post processing.</returns>
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
</member>
<member name="P:System.Net.Http.MultipartFormDataRemoteStreamProvider.FileData">
<summary>Gets a collection of file data passed as part of the multipart form data.</summary>
</member>
<member name="P:System.Net.Http.MultipartFormDataRemoteStreamProvider.FormData">
<summary>Gets a <see cref="T:System.Collections.Specialized.NameValueCollection" /> of form data passed as part of the multipart form data.</summary>
</member>
<member name="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.GetRemoteStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Provides a <see cref="T:System.Net.Http.RemoteStreamInfo" /> for <see cref="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)" />. Override this method to provide a remote stream to which the data should be written.</summary>
<returns>A result specifying a remote stream where the file will be written to and a location where the file can be accessed. It cannot be null and the stream must be writable.</returns>
<param name="parent">The parent <see cref="T:System.Net.Http.HttpContent" /> MIME multipart instance.</param>
<param name="headers">The header fields describing the body part's content.</param>
</member>
<member name="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)"></member>
<member name="T:System.Net.Http.MultipartFormDataStreamProvider">
<summary>Represents an <see cref="T:System.Net.Http.IMultipartStreamProvider" /> suited for use with HTML file uploads for writing file content to a <see cref="T:System.IO.FileStream" />.</summary>
</member>
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.#ctor(System.String)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataStreamProvider" /> class. </summary>
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
</member>
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.#ctor(System.String,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartFormDataStreamProvider" /> class.</summary>
<param name="rootPath">The root path where the content of MIME multipart body parts are written to.</param>
<param name="bufferSize">The number of bytes buffered for writes to the file.</param>
</member>
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.ExecutePostProcessingAsync">
<summary>Reads the non-file contents as form data.</summary>
<returns>A task that represents the asynchronous operation.</returns>
</member>
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.ExecutePostProcessingAsync(System.Threading.CancellationToken)"></member>
<member name="P:System.Net.Http.MultipartFormDataStreamProvider.FormData">
<summary>Gets a <see cref="T:System.Collections.Specialized.NameValueCollection" /> of form data passed as part of the multipart form data.</summary>
<returns>The <see cref="T:System.Collections.Specialized.NameValueCollection" /> of form data.</returns>
</member>
<member name="M:System.Net.Http.MultipartFormDataStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Gets the streaming instance where the message body part is written.</summary>
<returns>The <see cref="T:System.IO.Stream" /> instance where the message body part is written.</returns>
<param name="parent">The HTTP content that contains this body part.</param>
<param name="headers">Header fields describing the body part.</param>
</member>
<member name="T:System.Net.Http.MultipartMemoryStreamProvider">
<summary>Represents a multipart memory stream provider.</summary>
</member>
<member name="M:System.Net.Http.MultipartMemoryStreamProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartMemoryStreamProvider" /> class.</summary>
</member>
<member name="M:System.Net.Http.MultipartMemoryStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Returns the <see cref="T:System.IO.Stream" /> for the <see cref="T:System.Net.Http.MultipartMemoryStreamProvider" />.</summary>
<returns>The <see cref="T:System.IO.Stream" /> for the <see cref="T:System.Net.Http.MultipartMemoryStreamProvider" />.</returns>
<param name="parent">A <see cref="T:System.Net.Http.HttpContent" /> object.</param>
<param name="headers">The HTTP content headers.</param>
</member>
<member name="T:System.Net.Http.MultipartRelatedStreamProvider">
<summary>Represents the provider for the multipart related multistream.</summary>
</member>
<member name="M:System.Net.Http.MultipartRelatedStreamProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartRelatedStreamProvider" /> class.</summary>
</member>
<member name="M:System.Net.Http.MultipartRelatedStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Gets the related stream for the provider.</summary>
<returns>The content headers.</returns>
<param name="parent">The parent content.</param>
<param name="headers">The http content headers.</param>
</member>
<member name="P:System.Net.Http.MultipartRelatedStreamProvider.RootContent">
<summary>Gets the root content of the <see cref="T:System.Net.Http.MultipartRelatedStreamProvider" />.</summary>
<returns>The root content of the <see cref="T:System.Net.Http.MultipartRelatedStreamProvider" />.</returns>
</member>
<member name="T:System.Net.Http.MultipartRemoteFileData">
<summary>Represents a multipart file data for remote storage.</summary>
</member>
<member name="M:System.Net.Http.MultipartRemoteFileData.#ctor(System.Net.Http.Headers.HttpContentHeaders,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartRemoteFileData" /> class.</summary>
<param name="headers">The headers of the multipart file data.</param>
<param name="location">The remote file's location.</param>
<param name="fileName">The remote file's name.</param>
</member>
<member name="P:System.Net.Http.MultipartRemoteFileData.FileName">
<summary>Gets the remote file's name.</summary>
</member>
<member name="P:System.Net.Http.MultipartRemoteFileData.Headers">
<summary>Gets the headers of the multipart file data.</summary>
</member>
<member name="P:System.Net.Http.MultipartRemoteFileData.Location">
<summary>Gets the remote file's location.</summary>
</member>
<member name="T:System.Net.Http.MultipartStreamProvider">
<summary>Represents a stream provider that examines the headers provided by the MIME multipart parser as part of the MIME multipart extension methods (see <see cref="T:System.Net.Http.HttpContentMultipartExtensions" />) and decides what kind of stream to return for the body part to be written to.</summary>
</member>
<member name="M:System.Net.Http.MultipartStreamProvider.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.MultipartStreamProvider" /> class.</summary>
</member>
<member name="P:System.Net.Http.MultipartStreamProvider.Contents">
<summary>Gets or sets the contents for this <see cref="T:System.Net.Http.MultipartStreamProvider" />.</summary>
<returns>The contents for this <see cref="T:System.Net.Http.MultipartStreamProvider" />.</returns>
</member>
<member name="M:System.Net.Http.MultipartStreamProvider.ExecutePostProcessingAsync">
<summary>Executes the post processing operation for this <see cref="T:System.Net.Http.MultipartStreamProvider" />.</summary>
<returns>The asynchronous task for this operation.</returns>
</member>
<member name="M:System.Net.Http.MultipartStreamProvider.ExecutePostProcessingAsync(System.Threading.CancellationToken)">
<summary>Executes the post processing operation for this <see cref="T:System.Net.Http.MultipartStreamProvider" />.</summary>
<returns>The asynchronous task for this operation.</returns>
<param name="cancellationToken">The token to cancel the operation.</param>
</member>
<member name="M:System.Net.Http.MultipartStreamProvider.GetStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)">
<summary>Gets the stream where to write the body part to. This method is called when a MIME multipart body part has been parsed.</summary>
<returns>The <see cref="T:System.IO.Stream" /> instance where the message body part is written to.</returns>
<param name="parent">The content of the HTTP.</param>
<param name="headers">The header fields describing the body part.</param>
</member>
<member name="T:System.Net.Http.ObjectContent">
<summary> Contains a value as well as an associated <see cref="T:System.Net.Http.Formatting.MediaTypeFormatter" /> that will be used to serialize the value when writing this content. </summary>
</member>
<member name="M:System.Net.Http.ObjectContent.#ctor(System.Type,System.Object,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent" /> class.</summary>
<param name="type">The type of object this instance will contain.</param>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
</member>
<member name="M:System.Net.Http.ObjectContent.#ctor(System.Type,System.Object,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent" /> class. </summary>
<param name="type">The type of object this instance will contain.</param>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used.</param>
</member>
<member name="M:System.Net.Http.ObjectContent.#ctor(System.Type,System.Object,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent" /> class.</summary>
<param name="type">The type of object this instance will contain.</param>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
<param name="mediaType">The authoritative value of the Content-Type header.</param>
</member>
<member name="P:System.Net.Http.ObjectContent.Formatter">
<summary>Gets the media-type formatter associated with this content instance.</summary>
<returns>The media type formatter associated with this content instance.</returns>
</member>
<member name="P:System.Net.Http.ObjectContent.ObjectType">
<summary>Gets the type of object managed by this <see cref="T:System.Net.Http.ObjectContent" /> instance.</summary>
<returns>The object type.</returns>
</member>
<member name="M:System.Net.Http.ObjectContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary>Asynchronously serializes the object's content to the given stream.</summary>
<returns>The task object representing the asynchronous operation.</returns>
<param name="stream">The stream to write to.</param>
<param name="context">The associated <see cref="T:System.Net.TransportContext" />.</param>
</member>
<member name="M:System.Net.Http.ObjectContent.TryComputeLength(System.Int64@)">
<summary>Computes the length of the stream if possible.</summary>
<returns>true if the length has been computed; otherwise, false.</returns>
<param name="length">Receives the computed length of the stream.</param>
</member>
<member name="P:System.Net.Http.ObjectContent.Value">
<summary>Gets or sets the value of the content.</summary>
<returns>The content value.</returns>
</member>
<member name="T:System.Net.Http.ObjectContent`1">
<summary> Generic form of <see cref="T:System.Net.Http.ObjectContent" />. </summary>
<typeparam name="T">The type of object this class will contain.</typeparam>
</member>
<member name="M:System.Net.Http.ObjectContent`1.#ctor(`0,System.Net.Http.Formatting.MediaTypeFormatter)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent`1" /> class.</summary>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
</member>
<member name="M:System.Net.Http.ObjectContent`1.#ctor(`0,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent`1" /> class. </summary>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
<param name="mediaType">The authoritative value of the Content-Type header. Can be null, in which case the default content type of the formatter will be used.</param>
</member>
<member name="M:System.Net.Http.ObjectContent`1.#ctor(`0,System.Net.Http.Formatting.MediaTypeFormatter,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.ObjectContent`1" /> class.</summary>
<param name="value">The value of the object this instance will contain.</param>
<param name="formatter">The formatter to use when serializing the value.</param>
<param name="mediaType">The authoritative value of the Content-Type header.</param>
</member>
<member name="T:System.Net.Http.PushStreamContent">
<summary>Enables scenarios where a data producer wants to write directly (either synchronously or asynchronously) using a stream.</summary>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Action{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext})">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly. </param>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Action{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext},System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly.</param>
<param name="mediaType">The media type.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Action{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext},System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly.</param>
<param name="mediaType">The media type.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Func{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext,System.Threading.Tasks.Task})">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Func{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext,System.Threading.Tasks.Task},System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly.</param>
<param name="mediaType">The media type.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.#ctor(System.Func{System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext,System.Threading.Tasks.Task},System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.PushStreamContent" /> class.</summary>
<param name="onStreamAvailable">An action that is called when an output stream is available, allowing the action to write to it directly.</param>
<param name="mediaType">The media type.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.SerializeToStreamAsync(System.IO.Stream,System.Net.TransportContext)">
<summary>Asynchronously serializes the push content into stream.</summary>
<returns>The serialized push content.</returns>
<param name="stream">The stream where the push content will be serialized.</param>
<param name="context">The context.</param>
</member>
<member name="M:System.Net.Http.PushStreamContent.TryComputeLength(System.Int64@)">
<summary>Determines whether the stream content has a valid length in bytes.</summary>
<returns>true if length is a valid length; otherwise, false.</returns>
<param name="length">The length in bytes of the stream content.</param>
</member>
<member name="T:System.Net.Http.RemoteStreamInfo">
<summary>Represents the result for <see cref="M:System.Net.Http.MultipartFormDataRemoteStreamProvider.GetRemoteStream(System.Net.Http.HttpContent,System.Net.Http.Headers.HttpContentHeaders)" />.</summary>
</member>
<member name="M:System.Net.Http.RemoteStreamInfo.#ctor(System.IO.Stream,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.RemoteStreamInfo" /> class.</summary>
<param name="remoteStream">The remote stream instance where the file will be written to.</param>
<param name="location">The remote file's location.</param>
<param name="fileName">The remote file's name.</param>
</member>
<member name="P:System.Net.Http.RemoteStreamInfo.FileName">
<summary>Gets the remote file's location.</summary>
</member>
<member name="P:System.Net.Http.RemoteStreamInfo.Location">
<summary>Gets the remote file's location.</summary>
</member>
<member name="P:System.Net.Http.RemoteStreamInfo.RemoteStream">
<summary>Gets the remote stream instance where the file will be written to.</summary>
</member>
<member name="T:System.Net.Http.UnsupportedMediaTypeException">
<summary> Defines an exception type for signalling that a request's media type was not supported. </summary>
</member>
<member name="M:System.Net.Http.UnsupportedMediaTypeException.#ctor(System.String,System.Net.Http.Headers.MediaTypeHeaderValue)">
<summary> Initializes a new instance of the <see cref="T:System.Net.Http.UnsupportedMediaTypeException" /> class. </summary>
<param name="message">The message that describes the error.</param>
<param name="mediaType">The unsupported media type.</param>
</member>
<member name="P:System.Net.Http.UnsupportedMediaTypeException.MediaType">
<summary>Gets or sets the media type.</summary>
<returns>The media type.</returns>
</member>
<member name="T:System.Net.Http.UriExtensions">
<summary>Contains extension methods to allow strongly typed objects to be read from the query component of <see cref="T:System.Uri" /> instances. </summary>
</member>
<member name="M:System.Net.Http.UriExtensions.ParseQueryString(System.Uri)">
<summary>Parses the query portion of the specified URI.</summary>
<returns>A <see cref="T:System.Collections.Specialized.NameValueCollection" /> that contains the query parameters.</returns>
<param name="address">The URI to parse.</param>
</member>
<member name="M:System.Net.Http.UriExtensions.TryReadQueryAs(System.Uri,System.Type,System.Object@)">
<summary>Reads HTML form URL encoded data provided in the URI query string as an object of a specified type.</summary>
<returns>true if the query component of the URI can be read as the specified type; otherwise, false.</returns>
<param name="address">The URI to read.</param>
<param name="type">The type of object to read.</param>
<param name="value">When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized.</param>
</member>
<member name="M:System.Net.Http.UriExtensions.TryReadQueryAs``1(System.Uri,``0@)">
<summary>Reads HTML form URL encoded data provided in the URI query string as an object of a specified type.</summary>
<returns>true if the query component of the URI can be read as the specified type; otherwise, false.</returns>
<param name="address">The URI to read.</param>
<param name="value">When this method returns, contains an object that is initialized from the query component of the URI. This parameter is treated as uninitialized.</param>
<typeparam name="T">The type of object to read.</typeparam>
</member>
<member name="M:System.Net.Http.UriExtensions.TryReadQueryAsJson(System.Uri,Newtonsoft.Json.Linq.JObject@)">
<summary>Reads HTML form URL encoded data provided in the <see cref="T:System.Uri" /> query component as a <see cref="T:Newtonsoft.Json.Linq.JObject" /> object.</summary>
<returns>true if the query component can be read as <see cref="T:Newtonsoft.Json.Linq.JObject" />; otherwise false.</returns>
<param name="address">The <see cref="T:System.Uri" /> instance from which to read.</param>
<param name="value">An object to be initialized with this instance or null if the conversion cannot be performed.</param>
</member>
<member name="T:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter">
<summary>Abstract media type formatter class to support Bson and Json.</summary>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter" /> class.</summary>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.#ctor(System.Net.Http.Formatting.BaseJsonMediaTypeFormatter)">
<summary>Initializes a new instance of the <see cref="T:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter" /> class.</summary>
<param name="formatter">The <see cref="T:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter" /> instance to copy settings from.</param>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CanReadType(System.Type)">
<summary>Determines whether this formatter can read objects of the specified type.</summary>
<returns>true if objects of this type can be read, otherwise false.</returns>
<param name="type">The type of object that will be read.</param>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CanWriteType(System.Type)">
<summary>Determines whether this formatter can write objects of the specified type.</summary>
<returns>true if objects of this type can be written, otherwise false.</returns>
<param name="type">The type of object to write.</param>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CreateDefaultSerializerSettings">
<summary>Creates a <see cref="T:Newtonsoft.Json.JsonSerializerSettings" /> instance with the default settings used by the <see cref="T:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter" />.</summary>
<returns>Returns <see cref="T:Newtonsoft.Json.JsonSerializerSettings" />.</returns>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CreateJsonReader(System.Type,System.IO.Stream,System.Text.Encoding)">
<summary>Called during deserialization to get the <see cref="T:Newtonsoft.Json.JsonReader" />.</summary>
<returns>The reader to use during deserialization.</returns>
<param name="type">The type of the object to read.</param>
<param name="readStream">The stream from which to read.</param>
<param name="effectiveEncoding">The encoding to use when reading.</param>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CreateJsonSerializer">
<summary>Called during serialization and deserialization to get the <see cref="T:Newtonsoft.Json.JsonSerializer" />.</summary>
<returns>The JsonSerializer used during serialization and deserialization.</returns>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.CreateJsonWriter(System.Type,System.IO.Stream,System.Text.Encoding)">
<summary>Called during serialization to get the <see cref="T:Newtonsoft.Json.JsonWriter" />.</summary>
<returns>The writer to use during serialization.</returns>
<param name="type">The type of the object to write.</param>
<param name="writeStream">The stream to write to.</param>
<param name="effectiveEncoding">The encoding to use when writing.</param>
</member>
<member name="P:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.MaxDepth">
<summary>Gets or sets the maximum depth allowed by this formatter.</summary>
<returns>The maximum depth allowed by this formatter.</returns>
</member>
<member name="M:System.Net.Http.Formatting.BaseJsonMediaTypeFormatter.ReadFromStream(System.Type,System.IO.Stream,System.Text.Encoding,System.Net.Http.Formatting.IFormatterLogger)">