ModelBinderDictionary.Contains(KeyValuePair<Type,IModelBinder>) 方法
定义
确定模型联编程序字典是否包含指定的值。Determines whether the model binder dictionary contains a specified value.
public:
virtual bool Contains(System::Collections::Generic::KeyValuePair<Type ^, System::Web::ModelBinding::IModelBinder ^> item);
public bool Contains (System.Collections.Generic.KeyValuePair<Type,System.Web.ModelBinding.IModelBinder> item);
abstract member Contains : System.Collections.Generic.KeyValuePair<Type, System.Web.ModelBinding.IModelBinder> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<Type, System.Web.ModelBinding.IModelBinder> -> bool
Public Function Contains (item As KeyValuePair(Of Type, IModelBinder)) As Boolean
参数
- item
- KeyValuePair<Type,IModelBinder>
要搜索的项。The item to search for.
返回
如果找到 true,则为 item;否则为 false。true if item is found; otherwise, false.