TrackingAnnotationCollection Constructors

Definition

Initializes a new instance of the TrackingAnnotationCollection class.

Overloads

TrackingAnnotationCollection()

Initializes a new instance of the TrackingAnnotationCollection class.

TrackingAnnotationCollection(IEnumerable<String>)

Initializes a new instance of the TrackingAnnotationCollection class by using a list of string annotations.

TrackingAnnotationCollection()

Initializes a new instance of the TrackingAnnotationCollection class.

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

Remarks

The TrackingAnnotationCollection is initialized to an empty list.

Applies to

TrackingAnnotationCollection(IEnumerable<String>)

Initializes a new instance of the TrackingAnnotationCollection class by using a list of string annotations.

public:
 TrackingAnnotationCollection(System::Collections::Generic::IEnumerable<System::String ^> ^ annotations);
public TrackingAnnotationCollection (System.Collections.Generic.IEnumerable<string> annotations);
new System.Workflow.Runtime.Tracking.TrackingAnnotationCollection : seq<string> -> System.Workflow.Runtime.Tracking.TrackingAnnotationCollection
Public Sub New (annotations As IEnumerable(Of String))

Parameters

annotations
IEnumerable<String>

An IEnumerable<T> list of string annotations.

Exceptions

annotations is a null reference (Nothing in Visual Basic)

Remarks

The TrackingAnnotationCollection is initialized to contain the strings specified in annotations.

Applies to