ModelService.Find メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
検索開始位置を指定して、一致するモデル アイテムを検索します。
オーバーロード
Find(ModelItem, Predicate<Type>) |
検索開始位置を指定して、一致するモデル アイテムを検索します。 |
Find(ModelItem, Type) |
検索開始位置を指定して、一致するモデル アイテムを検索します。 |
注釈
検索は、すべて再帰的に行われます。
Find(ModelItem, Predicate<Type>)
検索開始位置を指定して、一致するモデル アイテムを検索します。
public:
abstract System::Collections::Generic::IEnumerable<System::Activities::Presentation::Model::ModelItem ^> ^ Find(System::Activities::Presentation::Model::ModelItem ^ startingItem, Predicate<Type ^> ^ match);
public abstract System.Collections.Generic.IEnumerable<System.Activities.Presentation.Model.ModelItem> Find (System.Activities.Presentation.Model.ModelItem startingItem, Predicate<Type> match);
abstract member Find : System.Activities.Presentation.Model.ModelItem * Predicate<Type> -> seq<System.Activities.Presentation.Model.ModelItem>
Public MustOverride Function Find (startingItem As ModelItem, match As Predicate(Of Type)) As IEnumerable(Of ModelItem)
パラメーター
- startingItem
- ModelItem
検索を開始する位置にある ModelItem。 このアイテムより上位にあるアイテムは無視されます。 このアイテムと、それより下位の階層にあるアイテムが検索対象になります。 この値が null
の場合は、代わりに Root が使用されます。
戻り値
クエリに一致するすべてのモデル アイテムが格納された IEnumerable<T> です。
例外
match
が null
です。
注釈
検索は、すべて再帰的に行われます。
適用対象
Find(ModelItem, Type)
検索開始位置を指定して、一致するモデル アイテムを検索します。
public:
abstract System::Collections::Generic::IEnumerable<System::Activities::Presentation::Model::ModelItem ^> ^ Find(System::Activities::Presentation::Model::ModelItem ^ startingItem, Type ^ type);
public abstract System.Collections.Generic.IEnumerable<System.Activities.Presentation.Model.ModelItem> Find (System.Activities.Presentation.Model.ModelItem startingItem, Type type);
abstract member Find : System.Activities.Presentation.Model.ModelItem * Type -> seq<System.Activities.Presentation.Model.ModelItem>
Public MustOverride Function Find (startingItem As ModelItem, type As Type) As IEnumerable(Of ModelItem)
パラメーター
- startingItem
- ModelItem
検索を開始する位置にある ModelItem。 このアイテムより上位にあるアイテムは無視されます。 このアイテムと、それより下位の階層にあるアイテムが検索対象になります。 この値が null
の場合は、代わりに Root が使用されます。
戻り値
クエリに一致するすべてのモデル アイテムが格納された IEnumerable<T> です。
例外
type
が null
です。
注釈
検索は、すべて再帰的に行われます。