다음을 통해 공유


RouteValueDictionary.Remove 메서드

정의

오버로드

Remove(String)
Remove(String, Object)

RouteValueDictionary에서 지정된 키가 있는 값을 제거하고 반환하려고 시도합니다.

Remove(String)

Source:
RouteValueDictionary.cs
Source:
RouteValueDictionary.cs
Source:
RouteValueDictionary.cs

IDictionary<TKey,TValue>에서 지정한 키를 가지는 요소를 제거합니다.

public:
 virtual bool Remove(System::String ^ key);
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean

매개 변수

key
String

반환

구현

적용 대상

Remove(String, Object)

Source:
RouteValueDictionary.cs
Source:
RouteValueDictionary.cs

RouteValueDictionary에서 지정된 키가 있는 값을 제거하고 반환하려고 시도합니다.

public:
 bool Remove(System::String ^ key, [Runtime::InteropServices::Out] System::Object ^ % value);
public bool Remove (string key, out object value);
public bool Remove (string key, out object? value);
member this.Remove : string * obj -> bool
Public Function Remove (key As String, ByRef value As Object) As Boolean

매개 변수

key
String

제거하고 반환할 요소의 키입니다.

value
Object

이 메서드가 반환될 때 는 에서 제거된 개체를 RouteValueDictionary포함하거나 null 키가 없는 경우 를 포함합니다.

반환

개체가 성공적으로 제거되면 true이고, 그렇지 않으면 false입니다.

적용 대상