Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / Tracking / ExtractCollection.cs / 1305376 / ExtractCollection.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 TrackPoint to hold Extracts. /// [Serializable] public class ExtractCollection : List{ public ExtractCollection() { } public ExtractCollection(IEnumerable extracts) { // // 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 == extracts) throw new ArgumentNullException("extracts"); AddRange(extracts); } } } // 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
- SymLanguageVendor.cs
- Matrix.cs
- WebPartRestoreVerb.cs
- GeneralTransform.cs
- BindingMemberInfo.cs
- SystemIPInterfaceStatistics.cs
- MetadataItem.cs
- TransformGroup.cs
- ItemChangedEventArgs.cs
- TextBoxBase.cs
- ArraySet.cs
- DataControlLinkButton.cs
- SerializerWriterEventHandlers.cs
- TextEditorDragDrop.cs
- ListViewItemEventArgs.cs
- ElementMarkupObject.cs
- NumberFormatter.cs
- StsCommunicationException.cs
- ColumnMap.cs
- XmlSchemaDatatype.cs
- PopupEventArgs.cs
- TextServicesCompartment.cs
- WindowsSolidBrush.cs
- DataGridViewImageCell.cs
- RealProxy.cs
- ServiceNameElement.cs
- Win32.cs
- SecurityTokenInclusionMode.cs
- RegionIterator.cs
- cookie.cs
- ObjectQuery_EntitySqlExtensions.cs
- SqlWebEventProvider.cs
- HtmlTitle.cs
- ItemDragEvent.cs
- CapabilitiesAssignment.cs
- PrivateFontCollection.cs
- FamilyMap.cs
- ProjectionCamera.cs
- PolyQuadraticBezierSegment.cs
- DataGridRelationshipRow.cs
- ISAPIRuntime.cs
- DataColumnMappingCollection.cs
- Duration.cs
- ColorPalette.cs
- SQLDateTimeStorage.cs
- DtrList.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- HashCryptoHandle.cs
- InstallerTypeAttribute.cs
- ScriptModule.cs
- BaseDataListActionList.cs
- GridViewUpdateEventArgs.cs
- BufferAllocator.cs
- OrderedDictionaryStateHelper.cs
- NumericExpr.cs
- TypeUtil.cs
- ClientBuildManagerCallback.cs
- MediaScriptCommandRoutedEventArgs.cs
- WebPartTransformerCollection.cs
- LambdaCompiler.Logical.cs
- StylusPointProperties.cs
- XmlAnyElementAttribute.cs
- PEFileReader.cs
- HwndSourceKeyboardInputSite.cs
- SQLMoney.cs
- ContentOperations.cs
- UriTemplateTableMatchCandidate.cs
- VariantWrapper.cs
- BinaryObjectInfo.cs
- BigInt.cs
- MetadataReference.cs
- DesignerActionService.cs
- XmlSerializationWriter.cs
- SamlAction.cs
- Panel.cs
- ObjectReferenceStack.cs
- QueryContinueDragEventArgs.cs
- SqlException.cs
- ReplyChannel.cs
- PlatformCulture.cs
- WinInetCache.cs
- View.cs
- ConfigXmlAttribute.cs
- AsymmetricSecurityProtocol.cs
- TextBreakpoint.cs
- TimeManager.cs
- ColumnWidthChangedEvent.cs
- ErrorWebPart.cs
- Wildcard.cs
- VectorCollectionValueSerializer.cs
- BaseDataBoundControl.cs
- ToolStripRenderer.cs
- TreeChangeInfo.cs
- HttpConfigurationContext.cs
- SHA1CryptoServiceProvider.cs
- BindStream.cs
- TerminateSequenceResponse.cs
- BoolLiteral.cs
- XmlDataSourceView.cs
- TransactionManager.cs