ActivityTagsCollection Constructors

Definition

Overloads

ActivityTagsCollection()

Create a new instance of the collection.

ActivityTagsCollection(IEnumerable<KeyValuePair<String,Object>>)

Create a new instance of the collection and store the input list items in the collection.

ActivityTagsCollection()

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

Create a new instance of the collection.

public:
 ActivityTagsCollection();
public ActivityTagsCollection ();
Public Sub New ()

Applies to

ActivityTagsCollection(IEnumerable<KeyValuePair<String,Object>>)

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

Create a new instance of the collection and store the input list items in the collection.

public:
 ActivityTagsCollection(System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ list);
public ActivityTagsCollection (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>> list);
new System.Diagnostics.ActivityTagsCollection : seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.ActivityTagsCollection
Public Sub New (list As IEnumerable(Of KeyValuePair(Of String, Object)))

Parameters

list
IEnumerable<KeyValuePair<String,Object>>

Initial list to store in the collection.

Applies to