NameScope.Contains(KeyValuePair<String,Object>) メソッド

定義

指定された項目がコレクションに含まれているかどうかを確認します。

public:
 virtual bool Contains(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public bool Contains (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Contains : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Contains (item As KeyValuePair(Of String, Object)) As Boolean

パラメーター

item
KeyValuePair<String,Object>

コレクション内で検索する項目。KeyValuePair<TKey,TValue> として指定します (キーは String、値は Object)。

戻り値

指定した KeyValuePair<TKey,TValue> がこの NameScope 内の既存のマッピングを識別する場合は true。 指定した KeyValuePair<TKey,TValue> が現在の NameScope に存在しない場合は false

実装

例外

keynullです。

注釈

一般に、名前が XAML 名前スコープで既に定義されているかどうか、およびそれがマップされるオブジェクト参照値が重要でないかどうかにのみ関心があります。 このシナリオでは、代わりに を呼び出 ContainsKey すことができます。

適用対象