Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Threading.Tasks.Dataflow.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Threading.Tasks.Dataflow</name>
5   </assembly>
6   <members>
7     <member name="T:System.Threading.Tasks.Dataflow.ActionBlock`1">
8       <summary>Provides a dataflow block that invokes a provided <see cref="T:System.Action`1" /> delegate for every data element received.</summary>
9       <typeparam name="TInput">The type of data that this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" /> operates on.</typeparam>
10     </member>
11     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Action{`0})">
12       <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" /> class with the specified action.</summary>
13       <param name="action">The action to invoke with each data element received.</param>
14       <exception cref="T:System.ArgumentNullException">
15         <paramref name="action" /> is <see langword="null" />.</exception>
16     </member>
17     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Action{`0},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
18       <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" /> class with the specified action and configuration options.</summary>
19       <param name="action">The action to invoke with each data element received.</param>
20       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" />.</param>
21       <exception cref="T:System.ArgumentNullException">
22         <paramref name="action" /> is <see langword="null" />.
23 -or-
24 <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
25     </member>
26     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Func{`0,System.Threading.Tasks.Task})">
27       <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" /> class with the specified action.</summary>
28       <param name="action">The action to invoke with each data element received.</param>
29       <exception cref="T:System.ArgumentNullException">
30         <paramref name="action" /> is <see langword="null" />.</exception>
31     </member>
32     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.#ctor(System.Func{`0,System.Threading.Tasks.Task},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
33       <summary>Initializes a new instance of the <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" /> class with the specified action and configuration options.</summary>
34       <param name="action">The action to invoke with each data element received.</param>
35       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.ActionBlock`1" />.</param>
36       <exception cref="T:System.ArgumentNullException">
37         <paramref name="action" /> is <see langword="null" />.
38 -or-
39 <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
40     </member>
41     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.Complete">
42       <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>
43     </member>
44     <member name="P:System.Threading.Tasks.Dataflow.ActionBlock`1.Completion">
45       <summary>Gets a  <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation and completion of the dataflow block.</summary>
46       <returns>The completed task.</returns>
47     </member>
48     <member name="P:System.Threading.Tasks.Dataflow.ActionBlock`1.InputCount">
49       <summary>Gets the number of input items waiting to be processed by this block.</summary>
50       <returns>The number of input items waiting to be processed by this block.</returns>
51     </member>
52     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.Post(`0)">
53       <summary>Posts an item to the target dataflow block.</summary>
54       <param name="item">The item being offered to the target.</param>
55       <returns>
56         <see langword="true" /> if the item is posted to the dataflow block; otherwise, <see langword="false" />.</returns>
57     </member>
58     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
59       <summary>Causes the dataflow block to complete in a faulted state.</summary>
60       <param name="exception">The exception that caused the faulting.</param>
61       <exception cref="T:System.ArgumentNullException">
62         <paramref name="exception" /> is <see langword="null" />.</exception>
63     </member>
64     <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)">
65       <summary>Offers a message to the dataflow block, and gives it the opportunity to consume or postpone the message.</summary>
66       <param name="messageHeader">The header of the message being offered.</param>
67       <param name="messageValue">The value of the message being offered.</param>
68       <param name="source">The dataflow block that is offering the message. This may be <see langword="null" />.</param>
69       <param name="consumeToAccept">
70         <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message; otherwise, <see langword="false" />.</param>
71       <returns>The status of the offered message.  If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
72 If the target would have otherwise postponed message, but source was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is returned.
73 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" /> is returned.
74 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
75       <exception cref="T:System.ArgumentException">
76         <paramref name="messageHeader" /> is not valid.
77 -or- <paramref name="consumeToAccept" /> may be <see langword="true" /> only if provided with a non-null <paramref name="source" />.</exception>
78     </member>
79     <member name="M:System.Threading.Tasks.Dataflow.ActionBlock`1.ToString">
80       <summary>Returns a string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
81       <returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
82     </member>
83     <member name="T:System.Threading.Tasks.Dataflow.BatchBlock`1">
84       <summary>Provides a dataflow block that batches inputs into arrays.</summary>
85       <typeparam name="T">Specifies the type of data put into batches.</typeparam>
86     </member>
87     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.#ctor(System.Int32)">
88       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" /> with the specified batch size.</summary>
89       <param name="batchSize">The number of items to group into a batch.</param>
90       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize" /> must be positive.</exception>
91     </member>
92     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
93       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" /> with the specified batch size, declining option, and block options.</summary>
94       <param name="batchSize">The number of items to group into a batch.</param>
95       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" />.</param>
96       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize" /> must be positive.
97 -or-
98 The <paramref name="batchSize" /> must be smaller than the value of the <see cref="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.BoundedCapacity" /> option if a non-default value has been set.</exception>
99       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
100     </member>
101     <member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.BatchSize">
102       <summary>Gets the size of the batches generated by this  <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" />.</summary>
103       <returns>The batch size.</returns>
104     </member>
105     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.Complete">
106       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
107     </member>
108     <member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.Completion">
109       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
110       <returns>The task.</returns>
111     </member>
112     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0[]},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
113       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
114       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
115       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
116       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
117       <exception cref="T:System.ArgumentNullException">
118         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
119     </member>
120     <member name="P:System.Threading.Tasks.Dataflow.BatchBlock`1.OutputCount">
121       <summary>Gets the number of output items available to be received from this block.</summary>
122       <returns>The number of output items.</returns>
123     </member>
124     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
125       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
126       <param name="exception">The <see cref="T:System.Exception" /> that caused the faulting.</param>
127       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
128     </member>
129     <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@)">
130       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> .</summary>
131       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
132       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
133       <param name="messageConsumed">
134         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
135       <returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> 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)" />.
136 If the message requested is not available, the return value will be <see langword="null" />.</returns>
137       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.</exception>
138       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
139     </member>
140     <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[]})">
141       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
142       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
143       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
144       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
145       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
146       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
147     </member>
148     <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[]})">
149       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
150       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
151       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
152       <returns>
153         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
154       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
155       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
156     </member>
157     <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)">
158       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
159       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
160       <param name="messageValue">The value of the message being offered.</param>
161       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be null.</param>
162       <param name="consumeToAccept">Set to <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
163       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
164 If the target would have otherwise postponed message, but <paramref name="source" /> was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
165 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" /> is returned.
166 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
167       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.
168 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
169     </member>
170     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.ToString">
171       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
172       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
173     </member>
174     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TriggerBatch">
175       <summary>Triggers the <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" /> 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" />.</summary>
176     </member>
177     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TryReceive(System.Predicate{`0[]},`0[]@)">
178       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
179       <param name="filter">The predicate a value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
180       <param name="item">The item received from the source.</param>
181       <returns>
182         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
183     </member>
184     <member name="M:System.Threading.Tasks.Dataflow.BatchBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0[]}@)">
185       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
186       <param name="items">The items received from the source.</param>
187       <returns>
188         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
189     </member>
190     <member name="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2">
191       <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>
192       <typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
193       <typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
194     </member>
195     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.#ctor(System.Int32)">
196       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2" /> with the specified configuration.</summary>
197       <param name="batchSize">The number of items to group into a batch.</param>
198       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize" /> must be positive.</exception>
199     </member>
200     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
201       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2" /> with the specified configuration.</summary>
202       <param name="batchSize">The number of items to group into a batch.</param>
203       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2" />.</param>
204       <exception cref="T:System.ArgumentNullException">
205         <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
206       <exception cref="T:System.ArgumentOutOfRangeException">
207         <paramref name="batchSize" /> is less than one.</exception>
208     </member>
209     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.BatchSize">
210       <summary>Gets the size of the batches generated by this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2" />.</summary>
211       <returns>The batch size.</returns>
212     </member>
213     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Complete">
214       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
215     </member>
216     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Completion">
217       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
218       <returns>The task.</returns>
219     </member>
220     <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)">
221       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
222       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
223       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
224       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
225       <exception cref="T:System.ArgumentNullException">
226         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
227     </member>
228     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.OutputCount">
229       <summary>Gets the number of output items available to be received from this block.</summary>
230       <returns>The number of output items.</returns>
231     </member>
232     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
233       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
234       <param name="exception">The <see cref="T:System.Exception" /> that caused the faulting.</param>
235       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
236     </member>
237     <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@)">
238       <param name="messageHeader" />
239       <param name="target" />
240       <param name="messageConsumed" />
241     </member>
242     <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}}})">
243       <param name="messageHeader" />
244       <param name="target" />
245     </member>
246     <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}}})">
247       <param name="messageHeader" />
248       <param name="target" />
249     </member>
250     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Target1">
251       <summary>Gets a target that may be used to offer messages of the first type.</summary>
252       <returns>The target.</returns>
253     </member>
254     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.Target2">
255       <summary>Gets a target that may be used to offer messages of the second type.</summary>
256       <returns>The target.</returns>
257     </member>
258     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2.ToString">
259       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
260       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
261     </member>
262     <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}}@)">
263       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
264       <param name="filter">The predicate a value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
265       <param name="item">The item received from the source.</param>
266       <returns>
267         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
268     </member>
269     <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}}}@)">
270       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
271       <param name="items">The items received from the source.</param>
272       <returns>
273         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
274     </member>
275     <member name="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3">
276       <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>
277       <typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
278       <typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
279       <typeparam name="T3">Specifies the type of data accepted by the block's third target.</typeparam>
280     </member>
281     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.#ctor(System.Int32)">
282       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3" /> with the specified configuration.</summary>
283       <param name="batchSize">The number of items to group into a batch.</param>
284       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize" /> must be positive.</exception>
285     </member>
286     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.#ctor(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
287       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3" /> with the specified configuration.</summary>
288       <param name="batchSize">The number of items to group into a batch.</param>
289       <param name="dataflowBlockOptions">The options with which to configure this  <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`2" />.</param>
290       <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="batchSize" /> must be positive.</exception>
291       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
292     </member>
293     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.BatchSize">
294       <summary>Gets the size of the batches generated by this <see cref="T:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3" />.</summary>
295       <returns>The batch size.</returns>
296     </member>
297     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Complete">
298       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
299     </member>
300     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Completion">
301       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
302       <returns>The task.</returns>
303     </member>
304     <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)">
305       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
306       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
307       <param name="linkOptions">
308         <see langword="true" /> if the source should unlink from the target after successfully propagating a single message; <see langword="false" /> to remain connected even after a single message has been propagated.</param>
309       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
310       <exception cref="T:System.ArgumentNullException">
311         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
312     </member>
313     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.OutputCount">
314       <summary>Gets the number of output items available to be received from this block.</summary>
315       <returns>The number of output items.</returns>
316     </member>
317     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
318       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
319       <param name="exception">The <see cref="T:System.Exception" /> that caused the faulting.</param>
320       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
321     </member>
322     <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@)">
323       <param name="messageHeader" />
324       <param name="target" />
325       <param name="messageConsumed" />
326     </member>
327     <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}}})">
328       <param name="messageHeader" />
329       <param name="target" />
330     </member>
331     <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}}})">
332       <param name="messageHeader" />
333       <param name="target" />
334     </member>
335     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target1">
336       <summary>Gets a target that may be used to offer messages of the first type.</summary>
337       <returns>The target.</returns>
338     </member>
339     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target2">
340       <summary>Gets a target that may be used to offer messages of the second type.</summary>
341       <returns>The target.</returns>
342     </member>
343     <member name="P:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.Target3">
344       <summary>Gets a target that may be used to offer messages of the third type.</summary>
345       <returns>The target.</returns>
346     </member>
347     <member name="M:System.Threading.Tasks.Dataflow.BatchedJoinBlock`3.ToString">
348       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
349       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
350     </member>
351     <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}}@)">
352       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
353       <param name="filter">The predicate a value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" /> in which case all items will pass.</param>
354       <param name="item">The item received from the source.</param>
355       <returns>
356         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
357     </member>
358     <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}}}@)">
359       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
360       <param name="items">The items received from the source.</param>
361       <returns>
362         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
363     </member>
364     <member name="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1">
365       <summary>Provides a buffer for storing at most one element at time, overwriting each message with the next as it arrives.</summary>
366       <typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
367     </member>
368     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.#ctor(System.Func{`0,`0})">
369       <summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1" /> with the specified cloning function.</summary>
370       <param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
371     </member>
372     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.#ctor(System.Func{`0,`0},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
373       <summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1" /> with the specified cloning function and  <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions" />.</summary>
374       <param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
375       <param name="dataflowBlockOptions">The options with which to configure this  <see cref="T:System.Threading.Tasks.Dataflow.BroadcastBlock`1" />.</param>
376       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
377     </member>
378     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.Complete">
379       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
380     </member>
381     <member name="P:System.Threading.Tasks.Dataflow.BroadcastBlock`1.Completion">
382       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
383       <returns>The task.</returns>
384     </member>
385     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
386       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
387       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
388       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
389       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
390       <exception cref="T:System.ArgumentNullException">
391         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
392     </member>
393     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
394       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
395       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
396       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
397     </member>
398     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.System#Threading#Tasks#Dataflow#IReceivableSourceBlock{T}#TryReceiveAll(System.Collections.Generic.IList{`0}@)">
399       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
400       <param name="items">The items received from the source.</param>
401       <returns>
402         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
403     </member>
404     <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@)">
405       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
406       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
407       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
408       <param name="messageConsumed">
409         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
410       <returns>The value of the consumed message. This may correspond to a different  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="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)" />.
411 If the message requested is not available, the return value will be <see langword="null" />.</returns>
412       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
413       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
414     </member>
415     <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})">
416       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
417       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
418       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
419       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
420       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
421       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
422     </member>
423     <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})">
424       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
425       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
426       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
427       <returns>
428         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
429       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
430       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
431     </member>
432     <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)">
433       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
434       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
435       <param name="messageValue">The value of the message being offered.</param>
436       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be null.</param>
437       <param name="consumeToAccept">Set to <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
438       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
439 If the target would have otherwise postponed message, but <paramref name="source" /> was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
440 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" /> is returned.
441 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
442       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.
443 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
444     </member>
445     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.ToString">
446       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
447       <returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
448     </member>
449     <member name="M:System.Threading.Tasks.Dataflow.BroadcastBlock`1.TryReceive(System.Predicate{`0},`0@)">
450       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
451       <param name="filter">The predicate a value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
452       <param name="item">The item received from the source.</param>
453       <returns>
454         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
455     </member>
456     <member name="T:System.Threading.Tasks.Dataflow.BufferBlock`1">
457       <summary>Provides a buffer for storing data for a Dataflow.</summary>
458       <typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
459     </member>
460     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.#ctor">
461       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1" />.</summary>
462     </member>
463     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.#ctor(System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
464       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1" /> with the specified  <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions" />.</summary>
465       <param name="dataflowBlockOptions">The options with which to configure this  <see cref="T:System.Threading.Tasks.Dataflow.BufferBlock`1" />.</param>
466       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
467     </member>
468     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.Complete">
469       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
470     </member>
471     <member name="P:System.Threading.Tasks.Dataflow.BufferBlock`1.Completion">
472       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
473       <returns>The task.</returns>
474     </member>
475     <member name="P:System.Threading.Tasks.Dataflow.BufferBlock`1.Count">
476       <summary>Gets the number of items currently stored in the buffer.</summary>
477       <returns>The number of items.</returns>
478     </member>
479     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
480       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
481       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
482       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
483       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
484       <exception cref="T:System.ArgumentNullException">
485         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
486     </member>
487     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
488       <summary>Causes the  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
489       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
490       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
491     </member>
492     <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@)">
493       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
494       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
495       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
496       <param name="messageConsumed">
497         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
498       <returns>The value of the consumed message. This may correspond to a different  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to  <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="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)" />.
499 If the message requested is not available, the return value will be <see langword="null" />.</returns>
500       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
501       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
502     </member>
503     <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})">
504       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
505       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
506       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
507       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
508       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
509       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
510     </member>
511     <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})">
512       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
513       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
514       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
515       <returns>
516         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
517       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
518       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
519     </member>
520     <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)">
521       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
522       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
523       <param name="messageValue">The value of the message being offered.</param>
524       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be <see langword="null" />.</param>
525       <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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
526       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
527 If the target would have otherwise postponed message, but <paramref name="source" /> was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
528 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" /> is returned.
529 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
530       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.
531 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
532     </member>
533     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.ToString">
534       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
535       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
536     </member>
537     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.TryReceive(System.Predicate{`0},`0@)">
538       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
539       <param name="filter">The predicate value must successfully pass in order for it to be received. <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
540       <param name="item">The item received from the source.</param>
541       <returns>
542         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
543     </member>
544     <member name="M:System.Threading.Tasks.Dataflow.BufferBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0}@)">
545       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
546       <param name="items">The items received from the source.</param>
547       <returns>
548         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
549     </member>
550     <member name="T:System.Threading.Tasks.Dataflow.DataflowBlock">
551       <summary>Provides a set of static (Shared in Visual Basic) methods for working with dataflow blocks.</summary>
552     </member>
553     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.AsObservable``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
554       <summary>Creates a new <see cref="T:System.IObservable`1" /> abstraction over the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
555       <param name="source">The source to wrap.</param>
556       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
557       <returns>An <see cref="T:System.IObservable`1" /> that enables observers to be subscribed to the source.</returns>
558       <exception cref="T:System.ArgumentNullException">The <paramref name="source" /> is <see langword="null" />.</exception>
559     </member>
560     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.AsObserver``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0})">
561       <summary>Creates a new <see cref="T:System.IObserver`1" /> abstraction over the  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
562       <param name="target">The target to wrap.</param>
563       <typeparam name="TInput">Specifies the type of input accepted by the target block.</typeparam>
564       <returns>An observer that wraps the target block.</returns>
565     </member>
566     <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})">
567       <summary>Monitors two dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
568       <param name="source1">The first source.</param>
569       <param name="action1">The handler to execute on data from the first source.</param>
570       <param name="source2">The second source.</param>
571       <param name="action2">The handler to execute on data from the second source.</param>
572       <typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
573       <typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
574       <returns>A  <see cref="T:System.Threading.Tasks.Task`1" /> 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" /> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result" /> set to either 0 or 1 to represent the first or second source, respectively.
575 This method will only consume an element from one of the two data sources, never both.</returns>
576       <exception cref="T:System.ArgumentNullException">The <paramref name="source1" /> is <see langword="null" />.
577 -or-
578 The  <paramref name="action1" /> is <see langword="null" />.
579 -or-
580 The <paramref name="source2" /> is <see langword="null" />.
581 -or-
582 The <paramref name="action2" /> is <see langword="null" />.</exception>
583     </member>
584     <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)">
585       <summary>Monitors two dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
586       <param name="source1">The first source.</param>
587       <param name="action1">The handler to execute on data from the first source.</param>
588       <param name="source2">The second source.</param>
589       <param name="action2">The handler to execute on data from the second source.</param>
590       <param name="dataflowBlockOptions">The options with which to configure this choice.</param>
591       <typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
592       <typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
593       <returns>A  <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous choice. If both sources are completed prior to the choice completing, or if the <see cref="T:System.Threading.CancellationToken" /> provided as part of <paramref name="dataflowBlockOptions" /> 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" /> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result" /> set to either 0 or 1 to represent the first or second source, respectively.</returns>
594       <exception cref="T:System.ArgumentNullException">The <paramref name="source1" /> is <see langword="null" />.
595 -or-
596 The <paramref name="action1" /> is <see langword="null" />.
597 -or-
598 The <paramref name="source2" /> is <see langword="null" />.
599 -or-
600 The <paramref name="action2" /> is <see langword="null" />.
601 -or-
602 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
603     </member>
604     <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})">
605       <summary>Monitors three dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
606       <param name="source1">The first source.</param>
607       <param name="action1">The handler to execute on data from the first source.</param>
608       <param name="source2">The second source.</param>
609       <param name="action2">The handler to execute on data from the second source.</param>
610       <param name="source3">The third source.</param>
611       <param name="action3">The handler to execute on data from the third source.</param>
612       <typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
613       <typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
614       <typeparam name="T3">Specifies type of data contained in the third source.</typeparam>
615       <returns>A  <see cref="T:System.Threading.Tasks.Task`1" /> 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" /> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result" /> set to the 0-based index of the source.
616 This method will only consume an element from one of the data sources, never more than one.</returns>
617       <exception cref="T:System.ArgumentNullException">The <paramref name="source1" /> is <see langword="null" />.
618 -or-
619 The <paramref name="action1" /> is <see langword="null" />.
620 -or-
621 The <paramref name="source2" /> is <see langword="null" />.
622 -or-
623 The <paramref name="action2" /> is <see langword="null" />.
624 -or-
625 The <paramref name="source3" /> is <see langword="null" />.
626 -or-
627 The <paramref name="action3" /> is <see langword="null" />.</exception>
628     </member>
629     <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)">
630       <summary>Monitors three dataflow sources, invoking the provided handler for whichever source makes data available first.</summary>
631       <param name="source1">The first source.</param>
632       <param name="action1">The handler to execute on data from the first source.</param>
633       <param name="source2">The second source.</param>
634       <param name="action2">The handler to execute on data from the second source.</param>
635       <param name="source3">The third source.</param>
636       <param name="action3">The handler to execute on data from the third source.</param>
637       <param name="dataflowBlockOptions">The options with which to configure this choice.</param>
638       <typeparam name="T1">Specifies type of data contained in the first source.</typeparam>
639       <typeparam name="T2">Specifies type of data contained in the second source.</typeparam>
640       <typeparam name="T3">Specifies type of data contained in the third source.</typeparam>
641       <returns>A  <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous choice. If all sources are completed prior to the choice completing, or if the <see cref="T:System.Threading.CancellationToken" /> provided as part of <paramref name="dataflowBlockOptions" /> 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" /> state and will contain the unhandled exception. Otherwise, the task will end with its <see cref="P:System.Threading.Tasks.Task`1.Result" /> set to the 0-based index of the source.
642 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>
643       <exception cref="T:System.ArgumentNullException">The <paramref name="source1" /> is <see langword="null" />.
644 -or-
645 The <paramref name="action1" /> is <see langword="null" />.
646 -or-
647 The <paramref name="source2" /> is <see langword="null" />.
648 -or-
649 The <paramref name="action2" /> is <see langword="null" />.
650 -or-
651 The <paramref name="source3" /> is <see langword="null" />.
652 -or-
653 The <paramref name="action3" /> is <see langword="null" />.
654 -or-
655 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
656     </member>
657     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Encapsulate``2(System.Threading.Tasks.Dataflow.ITargetBlock{``0},System.Threading.Tasks.Dataflow.ISourceBlock{``1})">
658       <summary>Encapsulates a target and a source into a single propagator.</summary>
659       <param name="target">The target to encapsulate.</param>
660       <param name="source">The source to encapsulate.</param>
661       <typeparam name="TInput">Specifies the type of input expected by the target.</typeparam>
662       <typeparam name="TOutput">Specifies the type of output produced by the source.</typeparam>
663       <returns>The encapsulated target and source.</returns>
664     </member>
665     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.LinkTo``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.Tasks.Dataflow.ITargetBlock{``0})">
666       <summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
667       <param name="source">The source from which to link.</param>
668       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect the source.</param>
669       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
670       <returns>An <see cref="T:System.IDisposable" /> that, upon calling <see langword="Dispose" />, will unlink the source from the target.</returns>
671       <exception cref="T:System.ArgumentNullException">The <paramref name="source" /> is <see langword="null" />.
672 -or-
673 The <paramref name="target" /> is <see langword="null" />.</exception>
674     </member>
675     <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})">
676       <summary>Links the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> using the specified filter.</summary>
677       <param name="source">The source from which to link.</param>
678       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect the source.</param>
679       <param name="predicate">The filter a message must pass in order for it to propagate from the source to the target.</param>
680       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
681       <returns>An <see cref="T:System.IDisposable" /> that, upon calling <see langword="Dispose" />, will unlink the source from the target.</returns>
682       <exception cref="T:System.ArgumentNullException">The <paramref name="source" /> is <see langword="null" />.
683 -or-
684 The <paramref name="target" /> is <see langword="null" />.
685 -or-
686 The <paramref name="predicate" /> is <see langword="null" />.</exception>
687     </member>
688     <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})">
689       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> using the specified filter.</summary>
690       <param name="source">The source from which to link.</param>
691       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect the source.</param>
692       <param name="linkOptions">One of the enumeration values that specifies how to configure a link between dataflow blocks.</param>
693       <param name="predicate">The filter a message must pass in order for it to propagate from the source to the target.</param>
694       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
695       <returns>An <see cref="T:System.IDisposable" /> that, upon calling <see langword="Dispose" />, will unlink the source from the target.</returns>
696       <exception cref="T:System.ArgumentNullException">The  <paramref name="source" /> is null (Nothing in Visual Basic).
697 -or-
698 The  <paramref name="target" /> is null (Nothing in Visual Basic).
699 -or-
700 The  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).
701 -or-
702 The  <paramref name="predicate" /> is null (Nothing in Visual Basic).</exception>
703     </member>
704     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.NullTarget``1">
705       <summary>Gets a target block that synchronously accepts all messages offered to it and drops them.</summary>
706       <typeparam name="TInput">The type of the messages this block can accept.</typeparam>
707       <returns>A <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> that accepts and subsequently drops all offered messages.</returns>
708     </member>
709     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.OutputAvailableAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
710       <summary>Provides a <see cref="T:System.Threading.Tasks.Task`1" /> that asynchronously monitors the source for available output.</summary>
711       <param name="source">The source to monitor.</param>
712       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
713       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> 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" /> is <see langword="true" />, more output is available in the source (though another consumer of the source may retrieve the data).
714 If it returns <see langword="false" />, more output is not and will never be available, due to the source completing prior to output being available.</returns>
715     </member>
716     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.OutputAvailableAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
717       <summary>Provides a  <see cref="T:System.Threading.Tasks.Task`1" /> that asynchronously monitors the source for available output.</summary>
718       <param name="source">The source to monitor.</param>
719       <param name="cancellationToken">The cancellation token with which to cancel the asynchronous operation.</param>
720       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
721       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> 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" /> is <see langword="true" />, more output is available in the source (though another consumer of the source may retrieve the data). If it returns <see langword="false" />, more output is not and will never be available, due to the source completing prior to output being available.</returns>
722     </member>
723     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Post``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0)">
724       <summary>Posts an item to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
725       <param name="target">The target block.</param>
726       <param name="item">The item being offered to the target.</param>
727       <typeparam name="TInput">Specifies the type of data accepted by the target block.</typeparam>
728       <returns>
729         <see langword="true" /> if the item was accepted by the target block; otherwise, <see langword="false" />.</returns>
730     </member>
731     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
732       <summary>Synchronously receives a value from a specified source.</summary>
733       <param name="source">The source from which to receive the value.</param>
734       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
735       <returns>The received value.</returns>
736       <exception cref="T:System.ArgumentNullException">
737         <paramref name="source" /> is <see langword="null" />.</exception>
738       <exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
739     </member>
740     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
741       <summary>Synchronously receives a value from a specified source and provides a token to cancel the operation.</summary>
742       <param name="source">The source from which to receive the value.</param>
743       <param name="cancellationToken">The token to use to cancel the receive operation.</param>
744       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
745       <returns>The received value.</returns>
746       <exception cref="T:System.ArgumentNullException">
747         <paramref name="source" /> is <see langword="null" />.</exception>
748       <exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
749       <exception cref="T:System.OperationCanceledException">The operation was canceled before an item was received from the source.</exception>
750     </member>
751     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan)">
752       <summary>Synchronously receives a value from a specified source, observing an optional time-out period.</summary>
753       <param name="source">The source from which to receive the value.</param>
754       <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>
755       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
756       <returns>The received value.</returns>
757       <exception cref="T:System.ArgumentOutOfRangeException">
758         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out period.
759 -or-
760 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
761       <exception cref="T:System.ArgumentNullException">
762         <paramref name="source" /> is <see langword="null" />.</exception>
763       <exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
764       <exception cref="T:System.TimeoutException">The specified time-out expired before an item was received from the source.</exception>
765     </member>
766     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.Receive``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan,System.Threading.CancellationToken)">
767       <summary>Synchronously receives a value from a specified source, providing a token to cancel the operation and observing an optional time-out interval.</summary>
768       <param name="source">The source from which to receive the value.</param>
769       <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>
770       <param name="cancellationToken">The token to use to cancel the receive operation.</param>
771       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
772       <returns>The received value.</returns>
773       <exception cref="T:System.ArgumentNullException">The <paramref name="source" /> is <see langword="null" />.</exception>
774       <exception cref="T:System.ArgumentOutOfRangeException">
775         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out period.
776 -or-
777 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
778       <exception cref="T:System.InvalidOperationException">No item could be received from the source.</exception>
779       <exception cref="T:System.TimeoutException">The specified time-out expired before an item was received from the source.</exception>
780       <exception cref="T:System.OperationCanceledException">The operation was canceled before an item was received from the source.</exception>
781     </member>
782     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0})">
783       <summary>Asynchronously receives a value from a specified source.</summary>
784       <param name="source">The source from which to receive the value.</param>
785       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
786       <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" /> returns the received value. If an item value cannot be retrieved because the source is empty and completed , an <see cref="T:System.InvalidOperationException" /> exception is thrown in the returned task.</returns>
787       <exception cref="T:System.ArgumentNullException">
788         <paramref name="source" /> is <see langword="null" />.</exception>
789     </member>
790     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.Threading.CancellationToken)">
791       <summary>Asynchronously receives a value from a specified source and provides a token to cancel the operation.</summary>
792       <param name="source">The source from which to receive the value.</param>
793       <param name="cancellationToken">The token to use to cancel the receive operation.</param>
794       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
795       <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" /> 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" /> exception is thrown in the returned task.</returns>
796       <exception cref="T:System.ArgumentNullException">
797         <paramref name="source" /> is <see langword="null" />.</exception>
798     </member>
799     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan)">
800       <summary>Asynchronously receives a value from a specified source, observing an optional time-out period.</summary>
801       <param name="source">The source from which to receive the value.</param>
802       <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>
803       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
804       <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" /> 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" /> exception is thrown in the returned task.</returns>
805       <exception cref="T:System.ArgumentNullException">
806         <paramref name="source" /> is <see langword="null" />.</exception>
807       <exception cref="T:System.ArgumentOutOfRangeException">
808         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out period.
809 -or-
810 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
811     </member>
812     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.ReceiveAsync``1(System.Threading.Tasks.Dataflow.ISourceBlock{``0},System.TimeSpan,System.Threading.CancellationToken)">
813       <summary>Asynchronously receives a value from a specified source, providing a token to cancel the operation and observing an optional time-out interval.</summary>
814       <param name="source">The source from which to receive the value.</param>
815       <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>
816       <param name="cancellationToken">The token which may be used to cancel the receive operation.</param>
817       <typeparam name="TOutput">The type of data contained in the source.</typeparam>
818       <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" /> 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" /> exception is thrown in the returned task.</returns>
819       <exception cref="T:System.ArgumentNullException">
820         <paramref name="source" /> is <see langword="null" />.</exception>
821       <exception cref="T:System.ArgumentOutOfRangeException">
822         <paramref name="timeout" /> is a negative number other than -1 milliseconds, which represents an infinite time-out period.
823 -or-
824 <paramref name="timeout" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
825     </member>
826     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.SendAsync``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0)">
827       <summary>Asynchronously offers a message to the target message block, allowing for postponement.</summary>
828       <param name="target">The target to which to post the data.</param>
829       <param name="item">The item being offered to the target.</param>
830       <typeparam name="TInput">Specifies the type of the data to post to the target.</typeparam>
831       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> 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)" />, upon return from the call the resulting <see cref="T:System.Threading.Tasks.Task`1" /> will be completed and its <see cref="P:System.Threading.Tasks.Task`1.Result" /> property will return <see langword="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" /> will be completed and its <see cref="P:System.Threading.Tasks.Task`1.Result" /> property will return <see langword="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" /> indicating whether the message was consumed. If the target never attempts to consume or release the message, the returned task will never complete.</returns>
832       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
833     </member>
834     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.SendAsync``1(System.Threading.Tasks.Dataflow.ITargetBlock{``0},``0,System.Threading.CancellationToken)">
835       <summary>Asynchronously offers a message to the target message block, allowing for postponement.</summary>
836       <param name="target">The target to which to post the data.</param>
837       <param name="item">The item being offered to the target.</param>
838       <param name="cancellationToken">The cancellation token with which to request cancellation of the send operation.</param>
839       <typeparam name="TInput">Specifies the type of the data to post to the target.</typeparam>
840       <returns>A <see cref="T:System.Threading.Tasks.Task`1" /> 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" /> will be completed and its <c>Result</c> 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" /> will be completed and its <c>Result</c> 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 <c>Result</c> indicating whether the message was consumed. If the target never attempts to consume or release the message, the returned task will never complete.
841 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>
842       <exception cref="T:System.ArgumentNullException">The  <paramref name="target" /> is null (Nothing in Visual Basic).</exception>
843     </member>
844     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlock.TryReceive``1(System.Threading.Tasks.Dataflow.IReceivableSourceBlock{``0},``0@)">
845       <summary>Attempts to synchronously receive an item from the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
846       <param name="source">The source from which to receive.</param>
847       <param name="item">The item received from the source.</param>
848       <typeparam name="TOutput">Specifies the type of data contained in the source.</typeparam>
849       <returns>
850         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
851     </member>
852     <member name="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions">
853       <summary>Provides options used to configure the processing performed by dataflow blocks.</summary>
854     </member>
855     <member name="M:System.Threading.Tasks.Dataflow.DataflowBlockOptions.#ctor">
856       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions" />.</summary>
857     </member>
858     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.BoundedCapacity">
859       <summary>Gets or sets the maximum number of messages that may be buffered by the block.</summary>
860       <returns>The maximum number of messages. The default is -1, which indicates an unlimited number of messages.</returns>
861     </member>
862     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.CancellationToken">
863       <summary>Gets or sets the  <see cref="T:System.Threading.CancellationToken" /> to monitor for cancellation requests.</summary>
864       <returns>The token.</returns>
865     </member>
866     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.EnsureOrdered">
867       <summary>Gets or sets a value that indicates whether ordered processing should be enforced on a block's handling of messages.</summary>
868       <returns>
869         <see langword="true" /> if ordered processing should be enforced; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
870     </member>
871     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.MaxMessagesPerTask">
872       <summary>Gets or sets the maximum number of messages that may be processed per task.</summary>
873       <returns>The maximum number of messages. The default is -1, which indicates an unlimited number of messages.</returns>
874     </member>
875     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.NameFormat">
876       <summary>Gets or sets the format string to use when a block is queried for its name.</summary>
877       <returns>The format string to use when a block is queried for its name.</returns>
878     </member>
879     <member name="P:System.Threading.Tasks.Dataflow.DataflowBlockOptions.TaskScheduler">
880       <summary>Gets or sets the <see cref="T:System.Threading.Tasks.TaskScheduler" /> to use for scheduling tasks.</summary>
881       <returns>The task scheduler.</returns>
882     </member>
883     <member name="F:System.Threading.Tasks.Dataflow.DataflowBlockOptions.Unbounded">
884       <summary>A constant used to specify an unlimited quantity for  <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions" /> members that provide an upper bound. This field is constant.</summary>
885     </member>
886     <member name="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions">
887       <summary>Provides options used to configure a link between dataflow blocks.</summary>
888     </member>
889     <member name="M:System.Threading.Tasks.Dataflow.DataflowLinkOptions.#ctor">
890       <summary>Initializes the <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" />.</summary>
891     </member>
892     <member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.Append">
893       <summary>Gets or sets whether the link should be appended to the source's list of links, or whether it should be prepended.</summary>
894       <returns>Returns  <see cref="T:System.Boolean" />.</returns>
895     </member>
896     <member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.MaxMessages">
897       <summary>Gets or sets the maximum number of messages that may be consumed across the link.</summary>
898       <returns>Returns  <see cref="T:System.Int32" />.</returns>
899     </member>
900     <member name="P:System.Threading.Tasks.Dataflow.DataflowLinkOptions.PropagateCompletion">
901       <summary>Gets or sets whether the linked target will have completion and faulting notification propagated to it automatically.</summary>
902       <returns>Returns  <see cref="T:System.Boolean" />.</returns>
903     </member>
904     <member name="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader">
905       <summary>Provides a container of data attributes for passing between dataflow blocks.</summary>
906     </member>
907     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.#ctor(System.Int64)">
908       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> with the specified attributes.</summary>
909       <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>
910     </member>
911     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Equals(System.Object)">
912       <summary>Checks boxed <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instances for equality by ID.</summary>
913       <param name="obj">A boxed <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
914       <returns>
915         <see langword="true" /> if the instances are equal; otherwise, <see langword="false" />.</returns>
916     </member>
917     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Equals(System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
918       <summary>Checks two  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instances for equality by ID without boxing.</summary>
919       <param name="other">Another  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
920       <returns>
921         <see langword="true" /> if the instances are equal; otherwise, <see langword="false" />.</returns>
922     </member>
923     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.GetHashCode">
924       <summary>Generates a hash code for the <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</summary>
925       <returns>The hash code.</returns>
926     </member>
927     <member name="P:System.Threading.Tasks.Dataflow.DataflowMessageHeader.Id">
928       <summary>Gets the ID of the message within the source.</summary>
929       <returns>The ID contained in the  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</returns>
930     </member>
931     <member name="P:System.Threading.Tasks.Dataflow.DataflowMessageHeader.IsValid">
932       <summary>Gets the validity of the message.</summary>
933       <returns>
934         <see langword="true" /> if the ID of the message is different from 0. <see langword="false" /> if the ID of the message is 0.</returns>
935     </member>
936     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.op_Equality(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
937       <summary>Checks two  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instances for equality by ID.</summary>
938       <param name="left">A  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
939       <param name="right">A  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
940       <returns>
941         <see langword="true" /> if the instances are equal; otherwise, <see langword="false" />.</returns>
942     </member>
943     <member name="M:System.Threading.Tasks.Dataflow.DataflowMessageHeader.op_Inequality(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)">
944       <summary>Checks two  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instances for non-equality by ID.</summary>
945       <param name="left">A  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
946       <param name="right">A  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance.</param>
947       <returns>
948         <see langword="true" /> if the instances are not equal; otherwise, <see langword="false" />.</returns>
949     </member>
950     <member name="T:System.Threading.Tasks.Dataflow.DataflowMessageStatus">
951       <summary>Represents the status of a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> when passed between dataflow blocks.</summary>
952     </member>
953     <member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted">
954       <summary>Indicates that the  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> accepted the message. Once a target has accepted a message, it is wholly owned by the target.</summary>
955     </member>
956     <member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined">
957       <summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> declined the message. The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> still owns the message.</summary>
958     </member>
959     <member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.DecliningPermanently">
960       <summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> declined the message. The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> still owns the message.
961 Additionally, the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> will decline all future messages sent by the source.</summary>
962     </member>
963     <member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.NotAvailable">
964       <summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> tried to accept the message from the <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />, but the message was no longer available.</summary>
965     </member>
966     <member name="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Postponed">
967       <summary>Indicates that the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> postponed the message for potential consumption at a later time.
968 The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> still owns the message.</summary>
969     </member>
970     <member name="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions">
971       <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" /> and  <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" />.</summary>
972     </member>
973     <member name="M:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.#ctor">
974       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions" />.</summary>
975     </member>
976     <member name="P:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.MaxDegreeOfParallelism">
977       <summary>Gets the maximum number of messages that may be processed by the block concurrently.</summary>
978       <returns>The maximum number of messages.</returns>
979     </member>
980     <member name="P:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions.SingleProducerConstrained">
981       <summary>Gets whether code using the dataflow block is constrained to one producer at a time.</summary>
982       <returns>Returns  <see cref="T:System.Boolean" />.</returns>
983     </member>
984     <member name="T:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions">
985       <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" /> and  <see cref="T:System.Threading.Tasks.Dataflow.BatchBlock`1" />.</summary>
986     </member>
987     <member name="M:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.#ctor">
988       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions" />.</summary>
989     </member>
990     <member name="P:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.Greedy">
991       <summary>Gets or sets the Boolean value to use to determine whether to greedily consume offered messages.</summary>
992       <returns>
993         <see langword="true" /> to greedily consume offered messages; otherwise, <see langword="false" />.</returns>
994     </member>
995     <member name="P:System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions.MaxNumberOfGroups">
996       <summary>Gets or sets the maximum number of groups that should be generated by the block.</summary>
997       <returns>The maximum number of groups.</returns>
998     </member>
999     <member name="T:System.Threading.Tasks.Dataflow.IDataflowBlock">
1000       <summary>Represents a dataflow block.</summary>
1001     </member>
1002     <member name="M:System.Threading.Tasks.Dataflow.IDataflowBlock.Complete">
1003       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1004     </member>
1005     <member name="P:System.Threading.Tasks.Dataflow.IDataflowBlock.Completion">
1006       <summary>Gets a  <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1007       <returns>The task.</returns>
1008     </member>
1009     <member name="M:System.Threading.Tasks.Dataflow.IDataflowBlock.Fault(System.Exception)">
1010       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1011       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
1012       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1013     </member>
1014     <member name="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2">
1015       <summary>Represents a dataflow block that is both a target for data and a source of data.</summary>
1016       <typeparam name="TInput">Specifies the type of data accepted by the  <see cref="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2" />.</typeparam>
1017       <typeparam name="TOutput">Specifies the type of data supplied by the  <see cref="T:System.Threading.Tasks.Dataflow.IPropagatorBlock`2" />.</typeparam>
1018     </member>
1019     <member name="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1">
1020       <summary>Represents a dataflow block that supports receiving messages without linking.</summary>
1021       <typeparam name="TOutput">Specifies the type of data supplied by the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</typeparam>
1022     </member>
1023     <member name="M:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1.TryReceive(System.Predicate{`0},`0@)">
1024       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1025       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1026       <param name="item">The item received from the source.</param>
1027       <returns>
1028         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1029     </member>
1030     <member name="M:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1.TryReceiveAll(System.Collections.Generic.IList{`0}@)">
1031       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1032       <param name="items">The items received from the source.</param>
1033       <returns>
1034         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1035     </member>
1036     <member name="T:System.Threading.Tasks.Dataflow.ISourceBlock`1">
1037       <summary>Represents a dataflow block that is a source of data.</summary>
1038       <typeparam name="TOutput">Specifies the type of data supplied by the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</typeparam>
1039     </member>
1040     <member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)">
1041       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1042       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
1043       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
1044       <param name="messageConsumed">
1045         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
1046       <returns>The value of the consumed message. This may correspond to a different  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="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)" />.
1047 If the message requested is not available, the return value will be null.</returns>
1048       <exception cref="T:System.ArgumentException">The messageHeader is not valid.</exception>
1049       <exception cref="T:System.ArgumentNullException">The target is <see langword="null" />.</exception>
1050     </member>
1051     <member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
1052       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</summary>
1053       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
1054       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
1055       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
1056       <exception cref="T:System.ArgumentNullException">
1057         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
1058     </member>
1059     <member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ReleaseReservation(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
1060       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1061       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
1062       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
1063       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1064       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1065       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
1066     </member>
1067     <member name="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ReserveMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0})">
1068       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1069       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
1070       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
1071       <returns>
1072         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
1073       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1074       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1075     </member>
1076     <member name="T:System.Threading.Tasks.Dataflow.ITargetBlock`1">
1077       <summary>Represents a dataflow block that is a target for data.</summary>
1078       <typeparam name="TInput">Specifies the type of data accepted by the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />.</typeparam>
1079     </member>
1080     <member name="M:System.Threading.Tasks.Dataflow.ITargetBlock`1.OfferMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,`0,System.Threading.Tasks.Dataflow.ISourceBlock{`0},System.Boolean)">
1081       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
1082       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
1083       <param name="messageValue">The value of the message being offered.</param>
1084       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be null.</param>
1085       <param name="consumeToAccept">Set to <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
1086       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
1087 If the target would have otherwise postponed message, but source was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
1088 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" /> is returned.
1089 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
1090       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.
1091 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
1092     </member>
1093     <member name="T:System.Threading.Tasks.Dataflow.JoinBlock`2">
1094       <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>
1095       <typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
1096       <typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
1097     </member>
1098     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.#ctor">
1099       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2" />.</summary>
1100     </member>
1101     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.#ctor(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
1102       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2" />.</summary>
1103       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2" />.</param>
1104       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1105     </member>
1106     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.Complete">
1107       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1108     </member>
1109     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Completion">
1110       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1111       <returns>The task.</returns>
1112     </member>
1113     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{System.Tuple{`0,`1}},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
1114       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
1115       <param name="target">Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</param>
1116       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
1117       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
1118       <exception cref="T:System.ArgumentNullException">
1119         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
1120     </member>
1121     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.OutputCount">
1122       <summary>Gets the number of output items available to be received from this block.</summary>
1123       <returns>The number of output items.</returns>
1124     </member>
1125     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
1126       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1127       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
1128       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1129     </member>
1130     <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@)">
1131       <param name="messageHeader" />
1132       <param name="target" />
1133       <param name="messageConsumed" />
1134     </member>
1135     <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}})">
1136       <param name="messageHeader" />
1137       <param name="target" />
1138     </member>
1139     <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}})">
1140       <param name="messageHeader" />
1141       <param name="target" />
1142     </member>
1143     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Target1">
1144       <summary>Gets a target that may be used to offer messages of the first type.</summary>
1145       <returns>The target.</returns>
1146     </member>
1147     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`2.Target2">
1148       <summary>Gets a target that may be used to offer messages of the second type.</summary>
1149       <returns>The target.</returns>
1150     </member>
1151     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.ToString">
1152       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
1153       <returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
1154     </member>
1155     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.TryReceive(System.Predicate{System.Tuple{`0,`1}},System.Tuple{`0,`1}@)">
1156       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1157       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1158       <param name="item">The item received from the source.</param>
1159       <returns>
1160         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1161     </member>
1162     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`2.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{`0,`1}}@)">
1163       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1164       <param name="items">The items received from the source.</param>
1165       <returns>
1166         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1167     </member>
1168     <member name="T:System.Threading.Tasks.Dataflow.JoinBlock`3">
1169       <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>
1170       <typeparam name="T1">Specifies the type of data accepted by the block's first target.</typeparam>
1171       <typeparam name="T2">Specifies the type of data accepted by the block's second target.</typeparam>
1172       <typeparam name="T3">Specifies the type of data accepted by the block's third target.</typeparam>
1173     </member>
1174     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.#ctor">
1175       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`3" />.</summary>
1176     </member>
1177     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.#ctor(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)">
1178       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`3" />.</summary>
1179       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.JoinBlock`2" />.</param>
1180       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1181     </member>
1182     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.Complete">
1183       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1184     </member>
1185     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Completion">
1186       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1187       <returns>The task.</returns>
1188     </member>
1189     <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)">
1190       <summary>Links the   source block to the specified target block.</summary>
1191       <param name="target">The target block to which to connect this source.</param>
1192       <param name="linkOptions">An object that configures the link.</param>
1193       <returns>A disposable object that unlinks the source from the target when its <see cref="M:System.IDisposable.Dispose" /> method is called.</returns>
1194       <exception cref="T:System.ArgumentNullException">
1195         <paramref name="target" /> is <see langword="null" />.
1196 -or-
1197 <paramref name="linkOptions" /> is <see langword="null" />.</exception>
1198     </member>
1199     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.OutputCount">
1200       <summary>Gets the number of output items available to be received from this block.</summary>
1201       <returns>The number of output items.</returns>
1202     </member>
1203     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
1204       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1205       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
1206       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1207     </member>
1208     <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@)">
1209       <param name="messageHeader" />
1210       <param name="target" />
1211       <param name="messageConsumed" />
1212     </member>
1213     <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}})">
1214       <param name="messageHeader" />
1215       <param name="target" />
1216     </member>
1217     <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}})">
1218       <param name="messageHeader" />
1219       <param name="target" />
1220     </member>
1221     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target1">
1222       <summary>Gets a target that may be used to offer messages of the first type.</summary>
1223       <returns>The target.</returns>
1224     </member>
1225     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target2">
1226       <summary>Gets a target that may be used to offer messages of the second type.</summary>
1227       <returns>The target.</returns>
1228     </member>
1229     <member name="P:System.Threading.Tasks.Dataflow.JoinBlock`3.Target3">
1230       <summary>Gets a target that may be used to offer messages of the third type.</summary>
1231       <returns>The target.</returns>
1232     </member>
1233     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.ToString">
1234       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
1235       <returns>A string that represents the formatted name of this <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
1236     </member>
1237     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.TryReceive(System.Predicate{System.Tuple{`0,`1,`2}},System.Tuple{`0,`1,`2}@)">
1238       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1239       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1240       <param name="item">The item received from the source.</param>
1241       <returns>
1242         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1243     </member>
1244     <member name="M:System.Threading.Tasks.Dataflow.JoinBlock`3.TryReceiveAll(System.Collections.Generic.IList{System.Tuple{`0,`1,`2}}@)">
1245       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1246       <param name="items">The items received from the source.</param>
1247       <returns>
1248         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1249     </member>
1250     <member name="T:System.Threading.Tasks.Dataflow.TransformBlock`2">
1251       <summary>Provides a dataflow block that invokes a provided <see cref="T:System.Func`2" /> delegate for every data element received.</summary>
1252       <typeparam name="TInput">Specifies the type of data received and operated on by this <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" />.</typeparam>
1253       <typeparam name="TOutput">Specifies the type of data output by this  <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" />.</typeparam>
1254     </member>
1255     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,`1})">
1256       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" /> with the specified  <see cref="T:System.Func`2" />.</summary>
1257       <param name="transform">The function to invoke with each data element received.</param>
1258       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.</exception>
1259     </member>
1260     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,`1},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
1261       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" /> with the specified  <see cref="T:System.Func`2" /> and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions" />.</summary>
1262       <param name="transform">The function to invoke with each data element received.</param>
1263       <param name="dataflowBlockOptions">The options with which to configure this  <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" />.</param>
1264       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.
1265 -or-
1266 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1267     </member>
1268     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{`1}})">
1269       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" /> with the specified <see cref="T:System.Func`2" />.</summary>
1270       <param name="transform">The function to invoke with each data element received.</param>
1271       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.</exception>
1272     </member>
1273     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{`1}},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
1274       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" /> with the specified  <see cref="T:System.Func`2" /> and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions" />.</summary>
1275       <param name="transform">The function to invoke with each data element received.</param>
1276       <param name="dataflowBlockOptions">The options with which to configure this  <see cref="T:System.Threading.Tasks.Dataflow.TransformBlock`2" />.</param>
1277       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.
1278 -or-
1279 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1280     </member>
1281     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.Complete">
1282       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1283     </member>
1284     <member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.Completion">
1285       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1286       <returns>The task.</returns>
1287     </member>
1288     <member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.InputCount">
1289       <summary>Gets the number of input items waiting to be processed by this block.</summary>
1290       <returns>The number of input items.</returns>
1291     </member>
1292     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
1293       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
1294       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
1295       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
1296       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
1297       <exception cref="T:System.ArgumentNullException">
1298         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
1299     </member>
1300     <member name="P:System.Threading.Tasks.Dataflow.TransformBlock`2.OutputCount">
1301       <summary>Gets the number of output items available to be received from this block.</summary>
1302       <returns>The number of output items.</returns>
1303     </member>
1304     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
1305       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1306       <param name="exception">The <see cref="T:System.Exception" /> that caused the faulting.</param>
1307       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1308     </member>
1309     <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@)">
1310       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1311       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
1312       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
1313       <param name="messageConsumed">
1314         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
1315       <returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="messageValue" /> 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)" />.
1316 If the message requested is not available, the return value will be <see langword="null" />.</returns>
1317       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1318       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1319     </member>
1320     <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})">
1321       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1322       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
1323       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
1324       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1325       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1326       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
1327     </member>
1328     <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})">
1329       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1330       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
1331       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
1332       <returns>
1333         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
1334       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1335       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1336     </member>
1337     <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)">
1338       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
1339       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
1340       <param name="messageValue">The value of the message being offered.</param>
1341       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be <see langword="null" />.</param>
1342       <param name="consumeToAccept">
1343         <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
1344       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
1345 If the target would have otherwise postponed but source was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
1346 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" /> is returned.
1347 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
1348       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.
1349 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
1350     </member>
1351     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.ToString">
1352       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
1353       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
1354     </member>
1355     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.TryReceive(System.Predicate{`1},`1@)">
1356       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1357       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1358       <param name="item">The item received from the source.</param>
1359       <returns>
1360         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1361     </member>
1362     <member name="M:System.Threading.Tasks.Dataflow.TransformBlock`2.TryReceiveAll(System.Collections.Generic.IList{`1}@)">
1363       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1364       <param name="items">The items received from the source.</param>
1365       <returns>
1366         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1367     </member>
1368     <member name="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2">
1369       <summary>Provides a dataflow block that invokes a provided <see cref="T:System.Func`2" /> delegate for every data element received.</summary>
1370       <typeparam name="TInput">Specifies the type of data received and operated on by this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</typeparam>
1371       <typeparam name="TOutput">Specifies the type of data output by this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</typeparam>
1372     </member>
1373     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`1}})">
1374       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" /> with the specified function.</summary>
1375       <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" /> will be made available as output from this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1376       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.</exception>
1377     </member>
1378     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Collections.Generic.IEnumerable{`1}},System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)">
1379       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" /> with the specified function and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions" />.</summary>
1380       <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" /> will be made available as output from this  <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1381       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1382       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.
1383 -or-
1384 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1385     </member>
1386     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.#ctor(System.Func{`0,System.Threading.Tasks.Task{System.Collections.Generic.IEnumerable{`1}}})">
1387       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" /> with the specified function.</summary>
1388       <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" /> will be made available as output from this  <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1389       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.</exception>
1390     </member>
1391     <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)">
1392       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" /> with the specified function and <see cref="T:System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions" />.</summary>
1393       <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" /> will be made available as output from this  <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1394       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.TransformManyBlock`2" />.</param>
1395       <exception cref="T:System.ArgumentNullException">The <paramref name="transform" /> is <see langword="null" />.
1396 -or-
1397 The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1398     </member>
1399     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.Complete">
1400       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1401     </member>
1402     <member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.Completion">
1403       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1404       <returns>The task.</returns>
1405     </member>
1406     <member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.InputCount">
1407       <summary>Gets the number of input items waiting to be processed by this block.</summary>
1408       <returns>The number of input items.</returns>
1409     </member>
1410     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`1},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
1411       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
1412       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
1413       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
1414       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
1415       <exception cref="T:System.ArgumentNullException">
1416         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
1417     </member>
1418     <member name="P:System.Threading.Tasks.Dataflow.TransformManyBlock`2.OutputCount">
1419       <summary>Gets the number of output items available to be received from this block.</summary>
1420       <returns>The number of output items.</returns>
1421     </member>
1422     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
1423       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a  <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1424       <param name="exception">The <see cref="T:System.Exception" /> that caused the faulting.</param>
1425       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1426     </member>
1427     <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@)">
1428       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1429       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
1430       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
1431       <param name="messageConsumed">
1432         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
1433       <returns>The value of the consumed message. This may correspond to a different <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="messageValue" /> 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)" />
1434 If the message requested is not available, the return value will be <see langword="null" />.</returns>
1435       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1436       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1437     </member>
1438     <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})">
1439       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1440       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
1441       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
1442       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1443       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1444       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
1445     </member>
1446     <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})">
1447       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1448       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
1449       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
1450       <returns>
1451         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
1452       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1453       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1454     </member>
1455     <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)">
1456       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
1457       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
1458       <param name="messageValue">The value of the message being offered.</param>
1459       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be <see langword="null" />.</param>
1460       <param name="consumeToAccept">
1461         <see langword="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@)" /> synchronously during the call to <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
1462       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
1463 If the target would have otherwise postponed but source was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
1464 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" /> is returned.
1465 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
1466       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.
1467 -or-
1468 <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
1469     </member>
1470     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.ToString">
1471       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
1472       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
1473     </member>
1474     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.TryReceive(System.Predicate{`1},`1@)">
1475       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1476       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1477       <param name="item">The item received from the source.</param>
1478       <returns>
1479         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1480     </member>
1481     <member name="M:System.Threading.Tasks.Dataflow.TransformManyBlock`2.TryReceiveAll(System.Collections.Generic.IList{`1}@)">
1482       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1483       <param name="items">The items received from the source.</param>
1484       <returns>
1485         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1486     </member>
1487     <member name="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1">
1488       <summary>Provides a buffer for receiving and storing at most one element in a network of dataflow blocks.</summary>
1489       <typeparam name="T">Specifies the type of the data buffered by this dataflow block.</typeparam>
1490     </member>
1491     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.#ctor(System.Func{`0,`0})">
1492       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1" />.</summary>
1493       <param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
1494     </member>
1495     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.#ctor(System.Func{`0,`0},System.Threading.Tasks.Dataflow.DataflowBlockOptions)">
1496       <summary>Initializes a new <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1" /> with the specified  <see cref="T:System.Threading.Tasks.Dataflow.DataflowBlockOptions" />.</summary>
1497       <param name="cloningFunction">The function to use to clone the data when offered to other blocks.</param>
1498       <param name="dataflowBlockOptions">The options with which to configure this <see cref="T:System.Threading.Tasks.Dataflow.WriteOnceBlock`1" />.</param>
1499       <exception cref="T:System.ArgumentNullException">The <paramref name="dataflowBlockOptions" /> is <see langword="null" />.</exception>
1500     </member>
1501     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.Complete">
1502       <summary>Signals to the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> that it should not accept nor produce any more messages nor consume any more postponed messages.</summary>
1503     </member>
1504     <member name="P:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.Completion">
1505       <summary>Gets a <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation and completion of the dataflow block.</summary>
1506       <returns>The task.</returns>
1507     </member>
1508     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.LinkTo(System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Threading.Tasks.Dataflow.DataflowLinkOptions)">
1509       <summary>Links the  <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> to the specified  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> .</summary>
1510       <param name="target">The  <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to which to connect this source.</param>
1511       <param name="linkOptions">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowLinkOptions" /> instance that configures the link.</param>
1512       <returns>An IDisposable that, upon calling Dispose, will unlink the source from the target.</returns>
1513       <exception cref="T:System.ArgumentNullException">
1514         <paramref name="target" /> is null (Nothing in Visual Basic) or  <paramref name="linkOptions" /> is null (Nothing in Visual Basic).</exception>
1515     </member>
1516     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#IDataflowBlock#Fault(System.Exception)">
1517       <summary>Causes the <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> to complete in a <see cref="F:System.Threading.Tasks.TaskStatus.Faulted" /> state.</summary>
1518       <param name="exception">The  <see cref="T:System.Exception" /> that caused the faulting.</param>
1519       <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> is <see langword="null" />.</exception>
1520     </member>
1521     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.System#Threading#Tasks#Dataflow#IReceivableSourceBlock{T}#TryReceiveAll(System.Collections.Generic.IList{`0}@)">
1522       <summary>Attempts to synchronously receive all available items from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1523       <param name="items">The items received from the source.</param>
1524       <returns>
1525         <see langword="true" /> if one or more items could be received; otherwise, <see langword="false" />.</returns>
1526     </member>
1527     <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@)">
1528       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to accept and consume a <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> previously offered by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1529       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being consumed.</param>
1530       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> consuming the message.</param>
1531       <param name="messageConsumed">
1532         <see langword="true" /> if the message was successfully consumed; otherwise, <see langword="false" />.</param>
1533       <returns>The value of the consumed message. This may correspond to a different  <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance than was previously reserved and passed as the <paramref name="messageHeader" /> to <see cref="M:System.Threading.Tasks.Dataflow.ISourceBlock`1.ConsumeMessage(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock{`0},System.Boolean@)" />. The consuming <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> must use the returned value instead of the value passed as <paramref name="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)" />.
1534 If the message requested is not available, the return value will be <see langword="null" />.</returns>
1535       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1536       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1537     </member>
1538     <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})">
1539       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to release a previously reserved <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1540       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the reserved message being released.</param>
1541       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> releasing the message it previously reserved.</param>
1542       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1543       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1544       <exception cref="T:System.InvalidOperationException">The <paramref name="target" /> did not have the message reserved.</exception>
1545     </member>
1546     <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})">
1547       <summary>Called by a linked <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> to reserve a previously offered <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> by this <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" />.</summary>
1548       <param name="messageHeader">The <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> of the message being reserved.</param>
1549       <param name="target">The <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" /> reserving the message.</param>
1550       <returns>
1551         <see langword="true" /> if the message was successfully reserved; otherwise, <see langword="false" />.</returns>
1552       <exception cref="T:System.ArgumentException">The <paramref name="messageHeader" /> is not valid.</exception>
1553       <exception cref="T:System.ArgumentNullException">The <paramref name="target" /> is <see langword="null" />.</exception>
1554     </member>
1555     <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)">
1556       <summary>Offers a message to the <see cref="T:System.Threading.Tasks.Dataflow.ITargetBlock`1" />, giving the target the opportunity to consume or postpone the message.</summary>
1557       <param name="messageHeader">A <see cref="T:System.Threading.Tasks.Dataflow.DataflowMessageHeader" /> instance that represents the header of the message being offered.</param>
1558       <param name="messageValue">The value of the message being offered.</param>
1559       <param name="source">The <see cref="T:System.Threading.Tasks.Dataflow.ISourceBlock`1" /> offering the message. This may be <see langword="null" />.</param>
1560       <param name="consumeToAccept">Set to <see langword="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@)" /> 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)" />, prior to returning <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" />, in order to consume the message.</param>
1561       <returns>The status of the offered message. If the message was accepted by the target, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Accepted" /> 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" /> 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.
1562 If the target would have otherwise postponed message, but <paramref name="source" /> was <see langword="null" />, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> is instead returned.
1563 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" /> is returned.
1564 If the target chose not to accept the message, <see cref="F:System.Threading.Tasks.Dataflow.DataflowMessageStatus.Declined" /> 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" /> is returned.</returns>
1565       <exception cref="T:System.ArgumentException">The  <paramref name="messageHeader" /> is not valid.
1566 -or- <paramref name="consumeToAccept" /> may only be true if provided with a non-null <paramref name="source" />.</exception>
1567     </member>
1568     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.ToString">
1569       <summary>Returns a string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</summary>
1570       <returns>A string that represents the formatted name of this  <see cref="T:System.Threading.Tasks.Dataflow.IDataflowBlock" /> instance.</returns>
1571     </member>
1572     <member name="M:System.Threading.Tasks.Dataflow.WriteOnceBlock`1.TryReceive(System.Predicate{`0},`0@)">
1573       <summary>Attempts to synchronously receive an available output item from the <see cref="T:System.Threading.Tasks.Dataflow.IReceivableSourceBlock`1" />.</summary>
1574       <param name="filter">The predicate value must successfully pass in order for it to be received.  <paramref name="filter" /> may be <see langword="null" />, in which case all items will pass.</param>
1575       <param name="item">The item received from the source.</param>
1576       <returns>
1577         <see langword="true" /> if an item could be received; otherwise, <see langword="false" />.</returns>
1578     </member>
1579   </members>
1580 </doc>