System.Threading.Tasks.Dataflow.xml
178.9 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.Threading.Tasks.Dataflow</name>
</assembly>
<members>
<member name="T:System.Threading.Tasks.Dataflow.ActionBlock`1">
<summary>Provides a dataflow block that invokes a provided <see cref="T:System.Action`1"></see> delegate for every data element received.</summary>
<typeparam name="TInput">The type of data that this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> operates on.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Action{`0})">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> class with the specified action.</summary>
<param name="action">The action to invoke with each data element received.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="action">action</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Func{`0,System.Threading.Tasks.Task})">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> class with the specified action.</summary>
<param name="action">The action to invoke with each data element received.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="action">action</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Action{`0},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> class with the specified action and configuration options.</summary>
<param name="action">The action to invoke with each data element received.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see>.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="action">action</paramref> is null. -or- <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Func{`0,System.Threading.Tasks.Task},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> class with the specified action and configuration options.</summary>
<param name="action">The action to invoke with each data element received.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see>.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="action">action</paramref> is null. -or- <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.Complete">
<summary>Signals to the dataflow block that it shouldn't accept or produce any more messages and shouldn't consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.ActionBlock`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> object that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The completed task.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.ActionBlock`1.InputCount">
<summary>Gets the number of input items waiting to be processed by this block.</summary>
<returns>The number of input items waiting to be processed by this block.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.Post(`0)">
<summary>Posts an item to the target dataflow block.</summary>
<param name="item">The item being offered to the target.</param>
<returns>true if the item is posted to the dataflow block; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the dataflow block to complete in a faulted state.</summary>
<param name="exception">The exception that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException"><paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the dataflow block, and gives it the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">The header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The dataflow block that is offering the message. This may be null.</param>
<param name="consumeToAccept">true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message; otherwise, false.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but source was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException"><paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may be true only if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.BatchBlock`1">
<summary>Provides a dataflow block that batches inputs into arrays.</summary>
<typeparam name="T">Specifies the type of data put into batches.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.#ctor(System.Int32)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see> with the specified batch size.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize">batchSize</paramref> must be positive.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see> with the specified batch size, declining option, and block options.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see>.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize">batchSize</paramref> must be positive. -or- The <paramref name="batchSize">batchSize</paramref> must be smaller than the value of the <see cref="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.BoundedCapacity"></see> option if a non-default value has been set.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.BatchSize">
<summary>Gets the size of the batches generated by this <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see>.</summary>
<returns>The batch size.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0[]},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TriggerBatch">
<summary>Triggers the <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see> to initiate a batching operation even if the number of currently queued or postponed items is less than the <see cref="P:System.Threading.Tasks.Dataflow.BatchBlock`1.BatchSize"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TryReceive(System.Predicate{`0[]},`0[]@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate a value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0[]}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T[]}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0[]},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> .</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as messageValue through <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T[]}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0[]})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T[]}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0[]})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#ITargetBlock{T}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">Set to true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but <paramref name="source">source</paramref> was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2">
<summary>Provides a dataflow block that batches a specified number of inputs of potentially differing types provided to one or more of its targets.</summary>
<typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
<typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.#ctor(System.Int32)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2"></see> with the specified configuration.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize">batchSize</paramref> must be positive.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2"></see> with the specified configuration.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.BatchSize">
<summary>Gets the size of the batches generated by this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2"></see>.</summary>
<returns>The batch size.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Target1">
<summary>Gets a target that may be used to offer messages of the first type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Target2">
<summary>Gets a target that may be used to offer messages of the second type.</summary>
<returns>The target.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.TryReceive(System.Predicate{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}},System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate a value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2}}}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}},System.Boolean@)">
<param name="messageHeader"></param>
<param name="target"></param>
<param name="messageConsumed"></param>
<returns></returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2}}}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}})">
<param name="messageHeader"></param>
<param name="target"></param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2}}}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1}}})">
<param name="messageHeader"></param>
<param name="target"></param>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3">
<summary>Provides a dataflow block that batches a specified number of inputs of potentially differing types provided to one or more of its targets.</summary>
<typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
<typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
<typeparam name="T3">Specifies the type of data accepted by the block's third target.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.#ctor(System.Int32)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3"></see> with the specified configuration.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize">batchSize</paramref> must be positive.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3"></see> with the specified configuration.</summary>
<param name="batchSize">The number of items to group into a batch.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2"></see>.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize">batchSize</paramref> must be positive.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.BatchSize">
<summary>Gets the size of the batches generated by this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3"></see>.</summary>
<returns>The batch size.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">true if the source should unlink from the target after successfully propagating a single message; false to remain connected even after a single message has been propagated.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target1">
<summary>Gets a target that may be used to offer messages of the first type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target2">
<summary>Gets a target that may be used to offer messages of the second type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target3">
<summary>Gets a target that may be used to offer messages of the third type.</summary>
<returns>The target.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.TryReceive(System.Predicate{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}},System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate a value must successfully pass in order for it to be received. filter may be null in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2},System#Collections#Generic#IList{T3}}}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}},System.Boolean@)">
<param name="messageHeader"></param>
<param name="target"></param>
<param name="messageConsumed"></param>
<returns></returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2},System#Collections#Generic#IList{T3}}}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}})">
<param name="messageHeader"></param>
<param name="target"></param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{System#Collections#Generic#IList{T1},System#Collections#Generic#IList{T2},System#Collections#Generic#IList{T3}}}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{System.Collections.Generic.IList{`0},System.Collections.Generic.IList{`1},System.Collections.Generic.IList{`2}}})">
<param name="messageHeader"></param>
<param name="target"></param>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1">
<summary>Provides a buffer for storing at most one element at time, overwriting each message with the next as it arrives.</summary>
<typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.#ctor(System.Func{`0,`0})">
<summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1"></see> with the specified cloning function.</summary>
<param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.#ctor(System.Func{`0,`0},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
<summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1"></see> with the specified cloning function and <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions"></see>.</summary>
<param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BroadcastBlock`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.TryReceive(System.Predicate{`0},`0@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate a value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#IReceivableSourceBlock{T}#TryReceiveAll(System.Collections.Generic.IList{`0}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#ITargetBlock{T}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">Set to true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but <paramref name="source">source</paramref> was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.BufferBlock`1">
<summary>Provides a buffer for storing data.</summary>
<typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.#ctor(System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1"></see> with the specified <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions"></see>.</summary>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BufferBlock`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.BufferBlock`1.Count">
<summary>Gets the number of items currently stored in the buffer.</summary>
<returns>The number of items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.TryReceive(System.Predicate{`0},`0@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#ITargetBlock{T}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">Set to true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but <paramref name="source">source</paramref> was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.DataflowBlock">
<summary>Provides a set of static (Shared in Visual Basic) methods for working with dataflow blocks.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.AsObservable``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
<summary>Creates a new <see cref="T:System.IObservable`1"></see> abstraction over the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="source">The source to wrap.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>An <see cref="T:System.IObservable`1"></see> that enables observers to be subscribed to the source.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source">source</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.AsObserver``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0})">
<summary>Creates a new <see cref="T:System.IObserver`1"></see> abstraction over the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="target">The target to wrap.</param>
<typeparam name="TInput">Specifies the type of input accepted by the target block.</typeparam>
<returns>An observer that wraps the target block.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Choose``3(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Action{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1},System.Action{``1},System.Threading.Tasks.Dataflow.ISourceBlock{``2},System.Action{``2})">
<summary>Monitors three dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
<param name="source1">The first source.</param>
<param name="action1">The handler to execute on data from the first source.</param>
<param name="source2">The second source.</param>
<param name="action2">The handler to execute on data from the second source.</param>
<param name="source3">The third source.</param>
<param name="action3">The handler to execute on data from the third source.</param>
<typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
<typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
<typeparam name="T3">Specifies type of data contained in the third source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous choice. If all sources are completed prior to the choice completing, the resulting task will be canceled. When one of the sources has data available and successfully propagates it to the choice, the resulting task will complete when the handler completes; if the handler throws an exception, the task will end in the <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> set to the 0-based index of the source. This method will only consume an element from one of the data sources, never more than one.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source1">source1</paramref> is null. -or- The <paramref name="action1">action1</paramref> is null. -or- The <paramref name="source2">source2</paramref> is null. -or- The <paramref name="action2">action2</paramref> is null. -or- The <paramref name="source3">source3</paramref> is null. -or- The <paramref name="action3">action3</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Choose``3(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Action{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1},System.Action{``1},System.Threading.Tasks.Dataflow.ISourceBlock{``2},System.Action{``2},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
<summary>Monitors three dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
<param name="source1">The first source.</param>
<param name="action1">The handler to execute on data from the first source.</param>
<param name="source2">The second source.</param>
<param name="action2">The handler to execute on data from the second source.</param>
<param name="source3">The third source.</param>
<param name="action3">The handler to execute on data from the third source.</param>
<param name="dataflowBlockOptions">The options with which to configure this choice.</param>
<typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
<typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
<typeparam name="T3">Specifies type of data contained in the third source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous choice. If all sources are completed prior to the choice completing, or if the <see cref="T:System.Threading.CancellationToken"></see> provided as part of <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is canceled prior to the choice completing, the resulting task will be canceled. When one of the sources has data available and successfully propagates it to the choice, the resulting task will complete when the handler completes; if the handler throws an exception, the task will end in the <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> set to the 0-based index of the source. This method will only consume an element from one of the data sources, never more than one. If cancellation is requested after an element has been received, the cancellation request will be ignored, and the relevant handler will be allowed to execute.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source1">source1</paramref> is null. -or- The <paramref name="action1">action1</paramref> is null. -or- The <paramref name="source2">source2</paramref> is null. -or- The <paramref name="action2">action2</paramref> is null. -or- The <paramref name="source3">source3</paramref> is null. -or- The <paramref name="action3">action3</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Choose``2(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Action{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1},System.Action{``1})">
<summary>Monitors two dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
<param name="source1">The first source.</param>
<param name="action1">The handler to execute on data from the first source.</param>
<param name="source2">The second source.</param>
<param name="action2">The handler to execute on data from the second source.</param>
<typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
<typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous choice. If both sources are completed prior to the choice completing, the resulting task will be canceled. When one of the sources has data available and successfully propagates it to the choice, the resulting task will complete when the handler completes; if the handler throws an exception, the task will end in the <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> set to either 0 or 1 to represent the first or second source, respectively. This method will only consume an element from one of the two data sources, never both.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source1">source1</paramref> is null. -or- The <paramref name="action1">action1</paramref> is null. -or- The <paramref name="source2">source2</paramref> is null. -or- The <paramref name="action2">action2</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Choose``2(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Action{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1},System.Action{``1},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
<summary>Monitors two dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
<param name="source1">The first source.</param>
<param name="action1">The handler to execute on data from the first source.</param>
<param name="source2">The second source.</param>
<param name="action2">The handler to execute on data from the second source.</param>
<param name="dataflowBlockOptions">The options with which to configure this choice.</param>
<typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
<typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous choice. If both sources are completed prior to the choice completing, or if the <see cref="T:System.Threading.CancellationToken"></see> provided as part of <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is canceled prior to the choice completing, the resulting task will be canceled. When one of the sources has data available and successfully propagates it to the choice, the resulting task will complete when the handler completes; if the handler throws an exception, the task will end in the <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> set to either 0 or 1 to represent the first or second source, respectively.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source1">source1</paramref> is null. -or- The <paramref name="action1">action1</paramref> is null. -or- The <paramref name="source2">source2</paramref> is null. -or- The <paramref name="action2">action2</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Encapsulate``2(System.Threading.Tasks.Dataflow.ITargetBlock{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1})">
<summary>Encapsulates a target and a source into a single propagator.</summary>
<param name="target">The target to encapsulate.</param>
<param name="source">The source to encapsulate.</param>
<typeparam name="TInput">Specifies the type of input expected by the target.</typeparam>
<typeparam name="TOutput">Specifies the type of output produced by the source.</typeparam>
<returns>The encapsulated target and source.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.LinkTo``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.Tasks.Dataflow.ITargetBlock{``0})">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="source">The source from which to link.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect the source.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>An <see cref="T:System.IDisposable"></see> that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source">source</paramref> is null. -or- The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.LinkTo``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.Tasks.Dataflow.ITargetBlock{``0},System.Predicate{``0})">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> using the specified filter.</summary>
<param name="source">The source from which to link.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect the source.</param>
<param name="predicate">The filter a message must pass in order for it to propagate from the source to the target.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>An <see cref="T:System.IDisposable"></see> that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source">source</paramref> is null. -or- The <paramref name="target">target</paramref> is null. -or- The <paramref name="predicate">predicate</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.LinkTo``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.Tasks.Dataflow.ITargetBlock{``0},System.Threading.Tasks.Dataflow.DataflowLinkOptions,System.Predicate{``0})">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> using the specified filter.</summary>
<param name="source">The source from which to link.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect the source.</param>
<param name="linkOptions">One of the enumeration values that specifies how to configure a link between dataflow blocks.</param>
<param name="predicate">The filter a message must pass in order for it to propagate from the source to the target.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>An <see cref="T:System.IDisposable"></see> that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source">source</paramref> is null (Nothing in Visual Basic). -or- The <paramref name="target">target</paramref> is null (Nothing in Visual Basic). -or- The <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic). -or- The <paramref name="predicate">predicate</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.NullTarget``1">
<summary>Gets a target block that synchronously accepts all messages offered to it and drops them.</summary>
<typeparam name="TInput">The type of the messages this block can accept.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> that accepts and subsequently drops all offered messages.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.OutputAvailableAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
<summary>Provides a <see cref="T:System.Threading.Tasks.Task`1"></see> that asynchronously monitors the source for available output.</summary>
<param name="source">The source to monitor.</param>
<param name="cancellationToken">The cancellation token with which to cancel the asynchronous operation.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that informs of whether and when more output is available. If, when the task completes, its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> is true, more output is available in the source (though another consumer of the source may retrieve the data). If it returns false, more output is not and will never be available, due to the source completing prior to output being available. If it returns false, more output is not and will never be available, due to the source completing prior to output being available.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.OutputAvailableAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
<summary>Provides a <see cref="T:System.Threading.Tasks.Task`1"></see> that asynchronously monitors the source for available output.</summary>
<param name="source">The source to monitor.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that informs of whether and when more output is available. If, when the task completes, its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> is true, more output is available in the source (though another consumer of the source may retrieve the data). If it returns false, more output is not and will never be available, due to the source completing prior to output being available.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Post``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0)">
<summary>Posts an item to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="target">The target block.</param>
<param name="item">The item being offered to the target.</param>
<typeparam name="TInput">Specifies the type of data accepted by the target block.</typeparam>
<returns>true if the item was accepted by the target block; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
<summary>Synchronously receives a value from a specified source.</summary>
<param name="source">The source from which to receive the value.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>The received value.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
<summary>Synchronously receives a value from a specified source and provides a token to cancel the operation.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="cancellationToken">The token to use to cancel the receive operation.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>The received value.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
<exception cref="T:System.OperationCanceledException">The operation was canceled before an item was received from the source.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan)">
<summary>Synchronously receives a value from a specified source, observing an optional time-out period.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="timeout">The maximum time interval, in milliseconds, to wait for the synchronous operation to complete, or an interval that represents -1 milliseconds to wait indefinitely.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>The received value.</returns>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="timeout">timeout</paramref> is a negative number other than -1 milliseconds, which represents an infinite time-out period. -or- <paramref name="timeout">timeout</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
<exception cref="T:System.TimeoutException">The specified time-out expired before an item was received from the source.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan,System.Threading.CancellationToken)">
<summary>Synchronously receives a value from a specified source, providing a token to cancel the operation and observing an optional time-out interval.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="timeout">The maximum time interval, in milliseconds, to wait for the synchronous operation to complete, or an interval that represents -1 milliseconds to wait indefinitely.</param>
<param name="cancellationToken">The token to use to cancel the receive operation.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>The received value.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="timeout">timeout</paramref> is a negative number other than -1 milliseconds, which represents an infinite time-out period. -or- <paramref name="timeout">timeout</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
<exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
<exception cref="T:System.TimeoutException">The specified time-out expired before an item was received from the source.</exception>
<exception cref="T:System.OperationCanceledException">The operation was canceled before an item was received from the source.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
<summary>Asynchronously receives a value from a specified source.</summary>
<param name="source">The source from which to receive the value.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>A task that represents the asynchronous receive operation. When an item value is successfully received from the source, the returned task is completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> returns the received value. If an item value cannot be retrieved because the source is empty and completed , an <see cref="T:System.InvalidOperationException"></see> exception is thrown in the returned task.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
<summary>Asynchronously receives a value from a specified source and provides a token to cancel the operation.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="cancellationToken">The token to use to cancel the receive operation.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>A task that represents the asynchronous receive operation. When a value is successfully received from the source, the returned task is completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> returns the value. If a value cannot be retrieved because cancellation was requested, the returned task is canceled. If the value cannot be retrieved because the source is empty and completed , an <see cref="T:System.InvalidOperationException"></see> exception is thrown in the returned task.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan)">
<summary>Asynchronously receives a value from a specified source, observing an optional time-out period.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="timeout">The maximum time interval, in milliseconds, to wait for the synchronous operation to complete, or an interval that represents -1 milliseconds to wait indefinitely.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>A task that represents the asynchronous receive operation. When a value is successfully received from the source, the returned task is completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> returns the value. If a value cannot be retrieved because the time-out expired, the returned task is canceled. If the value cannot be retrieved because the source is empty and completed , an <see cref="T:System.InvalidOperationException"></see> exception is thrown in the returned task.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="timeout">timeout</paramref> is a negative number other than -1 milliseconds, which represents an infinite time-out period. -or- <paramref name="timeout">timeout</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan,System.Threading.CancellationToken)">
<summary>Asynchronously receives a value from a specified source, providing a token to cancel the operation and observing an optional time-out interval.</summary>
<param name="source">The source from which to receive the value.</param>
<param name="timeout">The maximum time interval, in milliseconds, to wait for the synchronous operation to complete, or an interval that represents -1 milliseconds to wait indefinitely.</param>
<param name="cancellationToken">The token which may be used to cancel the receive operation.</param>
<typeparam name="TOutput">The type of data contained in the source.</typeparam>
<returns>A task that represents the asynchronous receive operation. When a value is successfully received from the source, the returned task is completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> returns the value. If a value cannot be retrieved because the time-out expired or cancellation was requested, the returned task is canceled. If the value cannot be retrieved because the source is empty and completed, an <see cref="T:System.InvalidOperationException"></see> exception is thrown in the returned task.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="source">source</paramref> is null.</exception>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="timeout">timeout</paramref> is a negative number other than -1 milliseconds, which represents an infinite time-out period. -or- <paramref name="timeout">timeout</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.SendAsync``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0,System.Threading.CancellationToken)">
<summary>Asynchronously offers a message to the target message block, allowing for postponement.</summary>
<param name="target">The target to which to post the data.</param>
<param name="item">The item being offered to the target.</param>
<param name="cancellationToken">The cancellation token with which to request cancellation of the send operation.</param>
<typeparam name="TInput">Specifies the type of the data to post to the target.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous send. If the target accepts and consumes the offered element during the call to SendAsync, upon return from the call the resulting <see cref="T:System.Threading.Tasks.Task`1"></see> will be completed and its Result property will return true. If the target declines the offered element during the call, upon return from the call the resulting <see cref="T:System.Threading.Tasks.Task`1"></see> will be completed and its Result property will return false. If the target postpones the offered element, the element will be buffered until such time that the target consumes or releases it, at which point the Task will complete, with its Result indicating whether the message was consumed. If the target never attempts to consume or release the message, the returned task will never complete. If cancellation is requested before the target has successfully consumed the sent data, the returned task will complete in the Canceled state and the data will no longer be available to the target.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.SendAsync``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0)">
<summary>Asynchronously offers a message to the target message block, allowing for postponement.</summary>
<param name="target">The target to which to post the data.</param>
<param name="item">The item being offered to the target.</param>
<typeparam name="TInput">Specifies the type of the data to post to the target.</typeparam>
<returns>A <see cref="T:System.Threading.Tasks.Task`1"></see> that represents the asynchronous send. If the target accepts and consumes the offered element during the call to <see cref="M:System.Threading.Tasks.Dataflow.DataflowBlock.SendAsync``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0)"></see>, upon return from the call the resulting <see cref="T:System.Threading.Tasks.Task`1"></see> will be completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> property will return true. If the target declines the offered element during the call, upon return from the call the resulting <see cref="T:System.Threading.Tasks.Task`1"></see> will be completed and its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> property will return false. If the target postpones the offered element, the element will be buffered until such time that the target consumes or releases it, at which point the task will complete, with its <see cref="P:System.Threading.Tasks.Task`1.Result"></see> indicating whether the message was consumed. If the target never attempts to consume or release the message, the returned task will never complete.</returns>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.TryReceive``1(System.Threading.Tasks.Dataflow.IReceivableSourceBlock{``0},``0@)">
<summary>Attempts to synchronously receive an item from the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="source">The source from which to receive.</param>
<param name="item">The item received from the source.</param>
<typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions">
<summary>Provides options used to configure the processing performed by dataflow blocks.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowBlockOptions.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions"></see>.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.BoundedCapacity">
<summary>Gets or sets the maximum number of messages that may be buffered by the block.</summary>
<returns>The maximum number of messages.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.CancellationToken">
<summary>Gets or sets the <see cref="T:System.Threading.CancellationToken"></see> to monitor for cancellation requests.</summary>
<returns>The token.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.EnsureOrdered">
<returns></returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.MaxMessagesPerTask">
<summary>Gets or sets the maximum number of messages that may be processed per task.</summary>
<returns>The maximum number of messages. The default is -1, which indicates an unlimited number of messages.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.NameFormat">
<summary>Gets or sets the format string to use when a block is queried for its name.</summary>
<returns>The format string to use when a block is queried for its name.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.TaskScheduler">
<summary>Gets or sets the <see cref="T:System.Threading.Tasks.TaskScheduler"></see> to use for scheduling tasks.</summary>
<returns>The task scheduler.</returns>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowBlockOptions.Unbounded">
<summary>A constant used to specify an unlimited quantity for <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions"></see> members that provide an upper bound. This field is constant.</summary>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions">
<summary>Provides options used to configure a link between dataflow blocks.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowLinkOptions.#ctor">
<summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see>.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.Append">
<summary>Gets or sets whether the link should be appended to the source’s list of links, or whether it should be prepended.</summary>
<returns>Returns <see cref="T:System.Boolean"></see>.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.MaxMessages">
<summary>Gets or sets the maximum number of messages that may be consumed across the link.</summary>
<returns>Returns <see cref="T:System.Int32"></see>.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.PropagateCompletion">
<summary>Gets or sets whether the linked target will have completion and faulting notification propagated to it automatically.</summary>
<returns>Returns <see cref="T:System.Boolean"></see>.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader">
<summary>Provides a container of data attributes for passing between dataflow blocks.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.#ctor(System.Int64)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> with the specified attributes.</summary>
<param name="id">The ID of the message. Must be unique within the originating source block. It does not need to be globally unique.</param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Equals(System.Object)">
<summary>Checks boxed <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instances for equality by ID.</summary>
<param name="obj">A boxed <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<returns>true if the instances are equal; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Equals(System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
<summary>Checks two <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instances for equality by ID without boxing.</summary>
<param name="other">Another <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<returns>true if the instances are equal; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.GetHashCode">
<summary>Generates a hash code for the <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</summary>
<returns>The hash code.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Id">
<summary>Gets the ID of the message within the source.</summary>
<returns>The ID contained in the <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.DataflowMessageHeader.IsValid">
<summary>Gets the validity of the message.</summary>
<returns>true if the ID of the message is different from 0. false if the ID of the message is 0.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.op_Equality(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
<summary>Checks two <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instances for equality by ID.</summary>
<param name="left">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<param name="right">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<returns>true if the instances are equal; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.op_Inequality(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
<summary>Checks two <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instances for non-equality by ID.</summary>
<param name="left">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<param name="right">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance.</param>
<returns>true if the instances are not equal; otherwise, false.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.DataflowMessageStatus">
<summary>Represents the status of a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> when passed between dataflow blocks.</summary>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted">
<summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> accepted the message. Once a target has accepted a message, it is wholly owned by the target.</summary>
<returns></returns>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined">
<summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> declined the message. The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> still owns the message.</summary>
<returns></returns>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently">
<summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> declined the message. The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> still owns the message. Additionally, the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> will decline all future messages sent by the source.</summary>
<returns></returns>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable">
<summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> tried to accept the message from the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>, but the message was no longer available.</summary>
<returns></returns>
</member>
<member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed">
<summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> postponed the message for potential consumption at a later time. The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> still owns the message.</summary>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions">
<summary>Provides options used to configure the processing performed by dataflow blocks that process each message through the invocation of a user-provided delegate. These are dataflow blocks such as <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1"></see> and <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions"></see>.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.MaxDegreeOfParallelism">
<summary>Gets the maximum number of messages that may be processed by the block concurrently.</summary>
<returns>The maximum number of messages.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.SingleProducerConstrained">
<summary>Gets whether code using the dataflow block is constrained to one producer at a time.</summary>
<returns>Returns <see cref="T:System.Boolean"></see>.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions">
<summary>Provides options used to configure the processing performed by dataflow blocks that group together multiple messages. These are dataflow blocks such as <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2"></see> and <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions"></see>.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.Greedy">
<summary>Gets or sets the Boolean value to use to determine whether to greedily consume offered messages.</summary>
<returns>true to greedily consume offered messages; otherwise, false.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.MaxNumberOfGroups">
<summary>Gets or sets the maximum number of groups that should be generated by the block.</summary>
<returns>The maximum number of groups.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.IDataflowBlock">
<summary>Represents a dataflow block.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.IDataflowBlock.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.IDataflowBlock.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.IDataflowBlock.Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2">
<summary>Represents a dataflow block that is both a target for data and a source of data.</summary>
<typeparam name="TInput">Specifies the type of data accepted by the <see cref="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2"></see>.</typeparam>
<typeparam name="TOutput">Specifies the type of data supplied by the <see cref="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2"></see>.</typeparam>
</member>
<member name="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1">
<summary>Represents a dataflow block that supports receiving messages without linking.</summary>
<typeparam name="TOutput">Specifies the type of data supplied by the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1.TryReceive(System.Predicate{`0},`0@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.ISourceBlock`1">
<summary>Represents a dataflow block that is a source of data.</summary>
<typeparam name="TOutput">Specifies the type of data supplied by the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a T:System.Threading.Tasks.Dataflow.DataflowMessageHeader previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The messageHeader is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The target is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.ITargetBlock`1">
<summary>Represents a dataflow block that is a target for data.</summary>
<typeparam name="TInput">Specifies the type of data accepted by the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">Set to true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but source was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.JoinBlock`2">
<summary>Provides a dataflow block that joins across multiple dataflow sources, not necessarily of the same type, waiting for one item to arrive for each type before they’re all released together as a tuple consisting of one item per type.</summary>
<typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
<typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.#ctor(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2"></see>.</summary>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1}},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Target1">
<summary>Gets a target that may be used to offer messages of the first type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Target2">
<summary>Gets a target that may be used to offer messages of the second type.</summary>
<returns>The target.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.TryReceive(System.Predicate{System.Tuple{`0,`1}},System.Tuple{`0,`1}@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{`0,`1}}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2}}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1}},System.Boolean@)">
<param name="messageHeader"></param>
<param name="target"></param>
<param name="messageConsumed"></param>
<returns></returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2}}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1}})">
<param name="messageHeader"></param>
<param name="target"></param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2}}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1}})">
<param name="messageHeader"></param>
<param name="target"></param>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.JoinBlock`3">
<summary>Provides a dataflow block that joins across multiple dataflow sources, which are not necessarily of the same type, waiting for one item to arrive for each type before they’re all released together as a tuple that contains one item per type.</summary>
<typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
<typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
<typeparam name="T3">Specifies the type of data accepted by the block's third target.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.#ctor">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`3"></see>.</summary>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.#ctor(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`3"></see>.</summary>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1,`2}},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the source block to the specified target block.</summary>
<param name="target">The target block to which to connect this source.</param>
<param name="linkOptions">An object that configures the link.</param>
<returns>A disposable object that unlinks the source from the target when its <see cref="M:System.IDisposable.Dispose"></see> method is called.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null. -or- <paramref name="linkOptions">linkOptions</paramref> is null.</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target1">
<summary>Gets a target that may be used to offer messages of the first type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target2">
<summary>Gets a target that may be used to offer messages of the second type.</summary>
<returns>The target.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target3">
<summary>Gets a target that may be used to offer messages of the third type.</summary>
<returns>The target.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.TryReceive(System.Predicate{System.Tuple{`0,`1,`2}},System.Tuple{`0,`1,`2}@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{`0,`1,`2}}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2,T3}}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1,`2}},System.Boolean@)">
<param name="messageHeader"></param>
<param name="target"></param>
<param name="messageConsumed"></param>
<returns></returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2,T3}}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1,`2}})">
<param name="messageHeader"></param>
<param name="target"></param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.System#Threading#Tasks#Dataflow#ISourceBlock{System#Tuple{T1,T2,T3}}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1,`2}})">
<param name="messageHeader"></param>
<param name="target"></param>
<returns></returns>
</member>
<member name="T:System.Threading.Tasks.Dataflow.TransformBlock`2">
<summary>Provides a dataflow block that invokes a provided <see cref="T:System.Func`2"></see> delegate for every data element received.</summary>
<typeparam name="TInput">Specifies the type of data received and operated on by this <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see>.</typeparam>
<typeparam name="TOutput">Specifies the type of data output by this <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see>.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{`1}})">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see> with the specified <see cref="T:System.Func`2"></see>.</summary>
<param name="transform">The function to invoke with each data element received.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,`1})">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see> with the specified <see cref="T:System.Func`2"></see>.</summary>
<param name="transform">The function to invoke with each data element received.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{`1}},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see> with the specified <see cref="T:System.Func`2"></see> and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions"></see>.</summary>
<param name="transform">The function to invoke with each data element received.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,`1},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see> with the specified <see cref="T:System.Func`2"></see> and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions"></see>.</summary>
<param name="transform">The function to invoke with each data element received.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.InputCount">
<summary>Gets the number of input items waiting to be processed by this block.</summary>
<returns>The number of input items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.TryReceive(System.Predicate{`1},`1@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.TryReceiveAll(System.Collections.Generic.IList{`1}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through <see cref="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">true if the target must call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed but source was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2">
<summary>Provides a dataflow block that invokes a provided <see cref="T:System.Func`2"></see> delegate for every data element received.</summary>
<typeparam name="TInput">Specifies the type of data received and operated on by this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</typeparam>
<typeparam name="TOutput">Specifies the type of data output by this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`1}})">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see> with the specified function.</summary>
<param name="transform">The function to invoke with each data element received. All of the data from the returned <see cref="T:System.Collections.Generic.IEnumerable`1"></see> will be made available as output from this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{`1}}})">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see> with the specified function.</summary>
<param name="transform">The function to invoke with each data element received. All of the data asynchronously returned in the <see cref="T:System.Collections.Generic.IEnumerable`1"></see> will be made available as output from this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`1}},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see> with the specified function and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions"></see>.</summary>
<param name="transform">The function to invoke with each data element received. All of the data from the returned in the <see cref="T:System.Collections.Generic.IEnumerable`1"></see> will be made available as output from this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{`1}}},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see> with the specified function and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions"></see>.</summary>
<param name="transform">The function to invoke with each data element received. All of the data asynchronously returned in the <see cref="T:System.Collections.Generic.IEnumerable`1"></see> will be made available as output from this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="transform">transform</paramref> is null. -or- The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.InputCount">
<summary>Gets the number of input items waiting to be processed by this block.</summary>
<returns>The number of input items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.OutputCount">
<summary>Gets the number of output items available to be received from this block.</summary>
<returns>The number of output items.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.TryReceive(System.Predicate{`1},`1@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.TryReceiveAll(System.Collections.Generic.IList{`1}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through OfferMessage <see cref="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see> If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#ISourceBlock{TOutput}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`1})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#ITargetBlock{TInput}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">true if the target must call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, as it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed but source was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
<member name="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1">
<summary>Provides a buffer for receiving and storing at most one element in a network of dataflow blocks.</summary>
<typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.#ctor(System.Func{`0,`0})">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1"></see>.</summary>
<param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.#ctor(System.Func{`0,`0},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
<summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1"></see> with the specified <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions"></see>.</summary>
<param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
<param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1"></see>.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions">dataflowBlockOptions</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.Complete">
<summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
</member>
<member name="P:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.Completion">
<summary>Gets a <see cref="T:System.Threading.Tasks.Task"></see> that represents the asynchronous operation and completion of the dataflow block.</summary>
<returns>The task.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
<summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> to the specified <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> .</summary>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to which to connect this source.</param>
<param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions"></see> instance that configures the link.</param>
<returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="target">target</paramref> is null (Nothing in Visual Basic) or <paramref name="linkOptions">linkOptions</paramref> is null (Nothing in Visual Basic).</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.ToString">
<summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</summary>
<returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> instance.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.TryReceive(System.Predicate{`0},`0@)">
<summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="filter">The predicate value must successfully pass in order for it to be received. filter may be null, in which case all items will pass.</param>
<param name="item">The item received from the source.</param>
<returns>true if an item could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
<summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock"></see> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted"></see> state.</summary>
<param name="exception">The <see cref="T:System.Exception"></see> that caused the faulting.</param>
<exception cref="T:System.ArgumentNullException">The <paramref name="exception">exception</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#IReceivableSourceBlock{T}#TryReceiveAll(System.Collections.Generic.IList{`0}@)">
<summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1"></see>.</summary>
<param name="items">The items received from the source.</param>
<returns>true if one or more items could be received; otherwise, false.</returns>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being consumed.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> consuming the message.</param>
<param name="messageConsumed">true if the message was successfully consumed; otherwise, false.</param>
<returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance than was previously reserved and passed as the <paramref name="messageHeader">messageHeader</paramref> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see>. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> must use the returned value instead of the value passed as <paramref name="messageValue">messageValue</paramref> through <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>. If the message requested is not available, the return value will be null.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the reserved message being released.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> releasing the message it previously reserved.</param>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
<exception cref="T:System.InvalidOperationException">The <paramref name="target">target</paramref> did not have the message reserved.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#ISourceBlock{T}#ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
<summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see>.</summary>
<param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> of the message being reserved.</param>
<param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see> reserving the message.</param>
<returns>true if the message was successfully reserved; otherwise, false.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid.</exception>
<exception cref="T:System.ArgumentNullException">The <paramref name="target">target</paramref> is null.</exception>
</member>
<member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#ITargetBlock{T}#OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
<summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1"></see>, giving the target the opportunity to consume or postpone the message.</summary>
<param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader"></see> instance that represents the header of the message being offered.</param>
<param name="messageValue">The value of the message being offered.</param>
<param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1"></see> offering the message. This may be null.</param>
<param name="consumeToAccept">Set to true to instruct the target to call <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)"></see> synchronously during the call to <see cref="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)"></see>, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see>, in order to consume the message.</param>
<returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted"></see> is returned, and the source should no longer use the offered message, because it is now owned by the target. If the message was postponed by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed"></see> is returned as a notification that the target may later attempt to consume or reserve the message; in the meantime, the source still owns the message and may offer it to other blocks. If the target would have otherwise postponed message, but <paramref name="source">source</paramref> was null, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is instead returned. If the target tried to accept the message but missed it due to the source delivering the message to another target or simply discarding it, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable"></see> is returned. If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined"></see> is returned. If the target chose not to accept the message and will never accept another message from this source, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently"></see> is returned.</returns>
<exception cref="T:System.ArgumentException">The <paramref name="messageHeader">messageHeader</paramref> is not valid. -or- <paramref name="consumeToAccept">consumeToAccept</paramref> may only be true if provided with a non-null <paramref name="source">source</paramref>.</exception>
</member>
</members>
</doc></span>