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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebControlParameterProxy.cs
- DataGridColumnReorderingEventArgs.cs
- WebEncodingValidatorAttribute.cs
- SignedXml.cs
- DataGridRowAutomationPeer.cs
- MD5CryptoServiceProvider.cs
- ProfileManager.cs
- SplitterEvent.cs
- AsyncCompletedEventArgs.cs
- PropertyGridEditorPart.cs
- WindowPattern.cs
- MulticastOption.cs
- PropertyKey.cs
- ToolZone.cs
- XmlDictionaryWriter.cs
- TypedDataSourceCodeGenerator.cs
- CodeConditionStatement.cs
- SecurityVerifiedMessage.cs
- TryLoadRunnableWorkflowCommand.cs
- RSAPKCS1SignatureDeformatter.cs
- ChangeDirector.cs
- Int32.cs
- OdbcConnectionStringbuilder.cs
- CollectionView.cs
- ClientSection.cs
- IUnknownConstantAttribute.cs
- ObservableCollectionDefaultValueFactory.cs
- CookieHandler.cs
- ServiceOperationUIEditor.cs
- SHA1Managed.cs
- OneToOneMappingSerializer.cs
- LostFocusEventManager.cs
- ComponentResourceKey.cs
- SendingRequestEventArgs.cs
- CountdownEvent.cs
- ConstraintConverter.cs
- Int64Storage.cs
- XmlSchemaType.cs
- TypefaceMap.cs
- SkipStoryboardToFill.cs
- SymbolUsageManager.cs
- RawTextInputReport.cs
- FlowPanelDesigner.cs
- HttpBrowserCapabilitiesWrapper.cs
- ExpressionBuilder.cs
- TemplatedMailWebEventProvider.cs
- SolidColorBrush.cs
- ArglessEventHandlerProxy.cs
- AspProxy.cs
- AtomPub10CategoriesDocumentFormatter.cs
- ValueUtilsSmi.cs
- LocationSectionRecord.cs
- CodeCatchClauseCollection.cs
- ProfileSettingsCollection.cs
- ElementMarkupObject.cs
- DataGridViewIntLinkedList.cs
- ExtendedPropertiesHandler.cs
- EventLogPermissionHolder.cs
- namescope.cs
- DataGridCaption.cs
- DesignerActionItemCollection.cs
- ToolStripContentPanelRenderEventArgs.cs
- ListItemConverter.cs
- SoapIncludeAttribute.cs
- SoapFormatter.cs
- ToolBarOverflowPanel.cs
- OptimizedTemplateContentHelper.cs
- DocumentViewerBaseAutomationPeer.cs
- ViewgenGatekeeper.cs
- ThemeableAttribute.cs
- WriteFileContext.cs
- VersionedStreamOwner.cs
- NavigationProgressEventArgs.cs
- xmlformatgeneratorstatics.cs
- X509Chain.cs
- SapiRecoContext.cs
- DbProviderFactoriesConfigurationHandler.cs
- BitmapData.cs
- StatusBarPanelClickEvent.cs
- DerivedKeySecurityTokenStub.cs
- Update.cs
- Rights.cs
- SiteMapNodeItemEventArgs.cs
- WebHttpSecurity.cs
- PropertyFilterAttribute.cs
- SafeCoTaskMem.cs
- DrawToolTipEventArgs.cs
- GeometryCombineModeValidation.cs
- WindowsGraphicsWrapper.cs
- ErrorCodes.cs
- Transform3DGroup.cs
- FieldNameLookup.cs
- EditingMode.cs
- RadioButtonAutomationPeer.cs
- SqlMetaData.cs
- _DigestClient.cs
- ObjectToken.cs
- InputDevice.cs
- XmlSerializationReader.cs
- DataGridViewComboBoxEditingControl.cs