Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ LinkTo< TOutput >() [1/3]

static IDisposable System.Threading.Tasks.Dataflow.DataflowBlock.LinkTo< TOutput > ( this ISourceBlock< TOutput > source,
ITargetBlock< TOutput > target )
inlinestatic

Definition at line 1231 of file DataflowBlock.cs.

1232 {
1233 if (source == null)
1234 {
1235 throw new ArgumentNullException("source");
1236 }
1237 if (target == null)
1238 {
1239 throw new ArgumentNullException("target");
1240 }
1241 return source.LinkTo(target, DataflowLinkOptions.Default);
1242 }

References System.Threading.Tasks.Dataflow.DataflowLinkOptions.Default, and System.source.