Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / Tracking / TrackPointCollection.cs / 1305376 / TrackPointCollection.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 TrackingProfile to hold ActivityTrackPoints. /// [Serializable] public class ActivityTrackPointCollection : List{ public ActivityTrackPointCollection() { } public ActivityTrackPointCollection(IEnumerable points) { // // 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 == points) throw new ArgumentNullException("points"); AddRange(points); } } /// /// Used by TrackingProfile to hold UserTrackPoints. /// [Serializable] public class UserTrackPointCollection : List{ public UserTrackPointCollection() { } public UserTrackPointCollection(IEnumerable points) { // // 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 == points) throw new ArgumentNullException("points"); AddRange(points); } } /// /// Used by TrackingProfile to hold ActivityTrackPoints. /// [Serializable] public class WorkflowTrackPointCollection : List{ public WorkflowTrackPointCollection() { } public WorkflowTrackPointCollection(IEnumerable points) { // // 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 == points) throw new ArgumentNullException("points"); AddRange(points); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextFindEngine.cs
- _emptywebproxy.cs
- KeyValuePairs.cs
- FloaterBaseParagraph.cs
- ColorContext.cs
- StrokeCollection.cs
- SpotLight.cs
- SetterBase.cs
- NullReferenceException.cs
- FixUp.cs
- ControlBuilderAttribute.cs
- DataBindingHandlerAttribute.cs
- TouchesOverProperty.cs
- SecurityKeyType.cs
- ColorMatrix.cs
- XPathNavigator.cs
- BaseCollection.cs
- ScriptReferenceBase.cs
- XmlAttributeHolder.cs
- AsymmetricKeyExchangeFormatter.cs
- PersianCalendar.cs
- AppDomainCompilerProxy.cs
- FormCollection.cs
- ConfigurationPermission.cs
- RawStylusActions.cs
- DataSourceControlBuilder.cs
- BmpBitmapDecoder.cs
- AsymmetricSignatureFormatter.cs
- SecUtil.cs
- HttpEncoderUtility.cs
- TextTreeInsertElementUndoUnit.cs
- DataGridViewTopLeftHeaderCell.cs
- HttpPostedFile.cs
- SpecialFolderEnumConverter.cs
- LockedBorderGlyph.cs
- TypeInfo.cs
- FastEncoderWindow.cs
- OpCodes.cs
- IImplicitResourceProvider.cs
- Deflater.cs
- BamlResourceSerializer.cs
- MarkedHighlightComponent.cs
- StandardBindingImporter.cs
- SqlGatherConsumedAliases.cs
- RoleGroupCollection.cs
- EditingMode.cs
- TypeDescriptionProviderAttribute.cs
- DocumentSchemaValidator.cs
- Transform.cs
- DateRangeEvent.cs
- AssemblyName.cs
- ToolboxDataAttribute.cs
- ApplicationContext.cs
- CachedFontFace.cs
- PrtCap_Public.cs
- XmlDownloadManager.cs
- ComponentDesigner.cs
- ExpressionBuilder.cs
- TraceHandlerErrorFormatter.cs
- DataTransferEventArgs.cs
- Pair.cs
- ClientUrlResolverWrapper.cs
- HMACSHA512.cs
- SamlEvidence.cs
- MethodBuilder.cs
- dsa.cs
- GlobalItem.cs
- ExpanderAutomationPeer.cs
- ToolStrip.cs
- DBCSCodePageEncoding.cs
- TemplateLookupAction.cs
- RepeatBehavior.cs
- RepeaterDesigner.cs
- PermissionRequestEvidence.cs
- SaveFileDialog.cs
- VirtualPath.cs
- WebReferencesBuildProvider.cs
- WindowsIPAddress.cs
- LoginView.cs
- ListBoxAutomationPeer.cs
- ZipIOLocalFileDataDescriptor.cs
- XmlSchemaComplexContentRestriction.cs
- HtmlForm.cs
- XmlEntityReference.cs
- QueryInterceptorAttribute.cs
- InfoCardKeyedHashAlgorithm.cs
- EventsTab.cs
- AnimatedTypeHelpers.cs
- DrawListViewColumnHeaderEventArgs.cs
- CompilerLocalReference.cs
- SiteMapPath.cs
- MobileSysDescriptionAttribute.cs
- FixedTextContainer.cs
- Frame.cs
- MenuTracker.cs
- RouteValueDictionary.cs
- COM2PropertyBuilderUITypeEditor.cs
- _DigestClient.cs
- BaseDataListDesigner.cs
- EventHandlingScope.cs