WF 内のコレクション アクティビティ
このトピックの内容は、Windows Workflow Foundation 4 に該当します。
コレクション アクティビティは、ワークフロー内のコレクション オブジェクトを操作するために使用されます。.NET Framework Version 4 には、コレクション内の項目の追加および削除、コレクション内の項目の存在を確認するテスト、およびコレクションの消去を行うシステム標準アクティビティがあります。すべてのコレクション アクティビティは、CodeActivity または CodeActivity から継承するジェネリック クラスです。ExistsInCollection と RemoveFromCollection には、結果を示す Boolean 型の OutArgument があります。
注 : |
---|
コレクション アクティビティが、基礎となるコレクション オブジェクトの設定前に実行された場合、InvalidOperationException がスローされ、アクティビティは失敗します。 |
コレクション アクティビティ
指定したコレクションに項目を追加します。 |
|
指定したコレクションからすべての項目を削除します。 |
|
ExistsInCollection |
項目がコレクション内に存在する場合、true を返します。 |
RemoveFromCollection |
指定したコレクションから項目を削除し、項目が正常に削除された場合は true を返します。 |
コレクション アクティビティの使用
次のコードは、ワークフロー変数として宣言されたコレクションとやり取りする方法の例です。使用するコレクションは、fruitList
という String オブジェクトの List’1 です。
Variable<ICollection<string>> fruitList = new Variable<ICollection<string>>
{
Default = new List<string>
{
"Apple",
"Orange",
},
Name = "FruitList",
};
Variable<bool> result = new Variable<bool>
{
Name = "Result",
}
Sequence seq1 = new Sequence
{
Variables = { fruitList, result },
Activities =
{
new If
{
Condition = new ExistsInCollection<string>
{
Collection = fruitList,
Item = "Pear",
},
Then = new AddToCollection<string>
{
Collection = fruitList,
Item = "Pear",
},
Else = new RemoveFromCollection<string>
{
Collection = fruitList,
Item = “Apple”,
},
new RemoveFromCollection<string>
{
Collection = fruitList,
Item = "Apple",
Result = result,
},
new If
{
Condition = result,
Then = new ClearCollection<string>
{
Collection = fruitList,
}
}
}
};
<Sequence xmlns="https://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml">
<Sequence.Variables>
<Variable x:TypeArguments="scg:ICollection(x:String)" Name="FruitList">
<Variable.Default>
<Literal x:TypeArguments="scg:ICollection(x:String)" Result="{x:Null}">
<scg:List x:TypeArguments="x:String" Capacity="4">
<x:String>Orange</x:String>
</scg:List>
</Literal>
</Variable.Default>
</Variable>
<Variable x:TypeArguments="x:Boolean" Name="Result" />
</Sequence.Variables>
<If>
<If.Condition>
<InArgument x:TypeArguments="x:Boolean">
<ExistsInCollection x:TypeArguments="x:String" Item="Pear" Result="{x:Null}">[FruitList]</ExistsInCollection>
</InArgument>
</If.Condition>
<If.Else>
<RemoveFromCollection x:TypeArguments="x:String" Item="Apple" Result="{x:Null}">[FruitList]</RemoveFromCollection>
</If.Else>
<If.Then>
<AddToCollection x:TypeArguments="x:String" Item="Pear">[FruitList]</AddToCollection>
</If.Then>
</If>
<RemoveFromCollection x:TypeArguments="x:String" Item="Apple" Result="[Result]">[FruitList]</RemoveFromCollection>
<If Condition="[Result]">
<If.Then>
<ClearCollection x:TypeArguments="x:String">[FruitList]</ClearCollection>
</If.Then>
</If>
</Sequence>