TagList.Add Method

Definition

Overloads

Add(KeyValuePair<String,Object>)

Adds a tag to the list.

Add(String, Object)

Adds a tag with the specified key and value to the list.

Add(KeyValuePair<String,Object>)

Source:
TagList.cs
Source:
TagList.cs
Source:
TagList.cs

Adds a tag to the list.

public:
 virtual void Add(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag);
public void Add (System.Collections.Generic.KeyValuePair<string,object?> tag);
abstract member Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (tag As KeyValuePair(Of String, Object))

Parameters

tag
KeyValuePair<String,Object>

The key-value pair of the tag to add to the list.

Implements

Applies to

Add(String, Object)

Source:
TagList.cs
Source:
TagList.cs
Source:
TagList.cs

Adds a tag with the specified key and value to the list.

public:
 void Add(System::String ^ key, System::Object ^ value);
public void Add (string key, object? value);
member 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.

Applies to