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
입니다.