ActivityTagsCollection.Add Method
Definition
Overloads
Add(KeyValuePair<String,Object>) |
Adds an item to the collection |
Add(String, Object) |
Adds a tag with the provided key and value to the collection. This collection doesn't allow adding two tags with the same key. |
Add(KeyValuePair<String,Object>)
Adds an item to the collection
public:
virtual void Add(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public void Add (System.Collections.Generic.KeyValuePair<string,object?> item);
abstract member Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (item As KeyValuePair(Of String, Object))
Parameters
- item
- KeyValuePair<String,Object>
Key and value pair of the tag to add to the collection.
Implements
Exceptions
item
already exists in the list.
item
is null
.
Applies to
Add(String, Object)
Adds a tag with the provided key and value to the collection. This collection doesn't allow adding two tags with the same key.
public:
virtual void Add(System::String ^ key, System::Object ^ value);
public void Add (string key, object? value);
abstract member Add : string * obj -> unit
override this.Add : string * obj -> unit
Public Sub Add (key As String, value As Object)
Parameters
- key
- String
The tag key.
- value
- Object
The tag value.