다음을 통해 공유


ModelBinderDictionary.Remove 메서드

정의

모델 바인더 사전에서 지정된 키를 가진 요소를 제거합니다.

오버로드

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>

제거할 항목입니다.

반환

Boolean

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

제거할 항목의 키입니다.

반환

Boolean

요소가 제거되었으면 true이고, key가 사전에서 제거되지 않았거나 사전에 없으면 false입니다.

구현

적용 대상