TrackingAnnotationCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.