ModelBinderDictionary.Remove メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したキーを持つ要素をモデル バインダー ディクショナリから削除します。
オーバーロード
Remove(KeyValuePair<Type,IModelBinder>) |
モデル バインダー ディクショナリ内で最初に見つかった指定の要素を削除します。 |
Remove(Type) |
指定したキーを持つ要素をモデル バインダー ディクショナリから削除します。 |
Remove(KeyValuePair<Type,IModelBinder>)
モデル バインダー ディクショナリ内で最初に見つかった指定の要素を削除します。
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<Type ^, System::Web::ModelBinding::IModelBinder ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<Type,System.Web.ModelBinding.IModelBinder> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<Type, System.Web.ModelBinding.IModelBinder> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<Type, System.Web.ModelBinding.IModelBinder> -> bool
Public Function Remove (item As KeyValuePair(Of Type, IModelBinder)) As Boolean
パラメーター
- item
- KeyValuePair<Type,IModelBinder>
削除する項目。
戻り値
item
がディクショナリから正常に削除された場合は true
。item
がディクショナリから削除されなかったか、ディクショナリになかった場合は false
。
実装
適用対象
Remove(Type)
指定したキーを持つ要素をモデル バインダー ディクショナリから削除します。
public:
virtual bool Remove(Type ^ key);
public bool Remove (Type key);
abstract member Remove : Type -> bool
override this.Remove : Type -> bool
Public Function Remove (key As Type) As Boolean
パラメーター
- key
- Type
削除する項目のキー。
戻り値
要素が正常に削除された場合は true
。key
がディクショナリから削除されなかったか、ディクショナリになかった場合は false
。