ParallelForEach<T>.Body Property
.NET Framework 4
The ActivityAction that is executed once for every value contained in the Values collection.
Assembly: System.Activities (in System.Activities.dll)
The following code sample demonstrates setting the Body property of a ParallelForEach<T> activity. This example is from the Corporate Purchase Process sample.
// invite all vendors and wait for their proposals new ParallelForEach<Vendor> { DisplayName = "Get vendor proposals", Values = new InArgument<IEnumerable<Vendor>>(ctx =>this.Rfp.Get(ctx).InvitedVendors), Body = new ActivityAction<Vendor>() { Argument = iterationVariableVendor, Handler = new Sequence { Variables = { tmpValue }, Activities = { // waits for a vendor proposal (creates a bookmark for a vendor) new WaitForVendorProposal { VendorId = new LambdaValue<int>(ctx =>iterationVariableVendor.Get(ctx).Id) , Result = new OutArgument<double>(tmpValue) }, // after the vendor proposal is received, it is registered in the Request for Proposals new InvokeMethod { TargetObject = new InArgument<RequestForProposal>(ctx =>this.Rfp.Get(ctx)), MethodName = "RegisterProposal", Parameters = { new InArgument<Vendor>(iterationVariableVendor), new InArgument<double>(tmpValue) } }, } } } },
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.