ActivityTagsCollection.Remove 메서드

정의

오버로드

Remove(KeyValuePair<String,Object>)

컬렉션에서 맨 처음 발견되는 특정 항목을 제거합니다.

Remove(String)

지정된 키를 가진 태그를 컬렉션에서 제거합니다.

Remove(KeyValuePair<String,Object>)

Source:
ActivityTagsCollection.cs
Source:
ActivityTagsCollection.cs
Source:
ActivityTagsCollection.cs

컬렉션에서 맨 처음 발견되는 특정 항목을 제거합니다.

public:
 virtual bool Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<string,object?> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Remove (item As KeyValuePair(Of String, Object)) As Boolean

매개 변수

item
KeyValuePair<String,Object>

제거할 태그 키-값 쌍입니다.

반환

항목이 컬렉션에서 제거된 경우 true이고, 그렇지 않으면 false입니다. 이 메서드는 항목이 원래 컬렉션에 없는 경우에도 false를 반환합니다.

구현

적용 대상

Remove(String)

Source:
ActivityTagsCollection.cs
Source:
ActivityTagsCollection.cs
Source:
ActivityTagsCollection.cs

지정된 키를 가진 태그를 컬렉션에서 제거합니다.

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

태그 키입니다.

반환

항목이 존재했다가 제거되었으면 true입니다. 그렇지 않으면 false입니다.

구현

적용 대상