TrackingAnnotationCollection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / Tracking / TrackingAnnotationCollection.cs / 1305376 / TrackingAnnotationCollection.cs

                            using System; 
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text; 
using System.Xml;
using System.Xml.Schema; 
using System.IO; 
using System.Reflection;
using System.Diagnostics; 
using System.Runtime.Serialization;
using System.Security.Permissions;
using System.Globalization;
 
//using System.Workflow.Activities;
using System.Workflow.ComponentModel; 
using System.Workflow.Runtime; 
using System.Workflow.Runtime.Hosting;
using Hosting = System.Workflow.Runtime.Hosting; 

namespace System.Workflow.Runtime.Tracking
{
    ///  
    /// Used by Location to hold Conditions.
    ///  
 
    /// 
    /// Used by TrackingExtract and TrackPoint to hold annotations. 
    /// 
    [Serializable]
    public class TrackingAnnotationCollection : List
    { 
        public TrackingAnnotationCollection()
        { 
        } 

        public TrackingAnnotationCollection(IEnumerable annotations) 
        {
            //
            // Not using the IEnumerable constructor on the base List so that we can check for null.
            // The code behind AddRange doesn't appear to have a significant perf 
            // overhead compared to the IEnumerable constructor if the list is empty
            // (which it will always be at this point). 
            if (null == annotations) 
                throw new ArgumentNullException("annotations");
 
            AddRange(annotations);
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK