Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / Tracking / TrackingDataItem.cs / 1305376 / TrackingDataItem.cs
using System; using System.Collections; using System.Collections.Generic; using System.Workflow.ComponentModel; using System.Runtime.Serialization; using System.Security.Permissions; using System.Workflow.Runtime.Hosting; namespace System.Workflow.Runtime.Tracking { ////// Contain a single piece of tracking data and any associated annotations. /// public class TrackingDataItem { private TrackingAnnotationCollection _annotations = new TrackingAnnotationCollection(); private object _data = null; private string _fieldName = null; public TrackingDataItem() { } public TrackingAnnotationCollection Annotations { get { return _annotations; } //set{ _annotations = value; } } public string FieldName { get { return _fieldName; } set { _fieldName = value; } } public object Data { get { return _data; } set { _data = value; } } } } // 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
- LineServicesCallbacks.cs
- NameValueSectionHandler.cs
- FileFormatException.cs
- CodeNamespaceImport.cs
- DropShadowEffect.cs
- GorillaCodec.cs
- BuildProviderCollection.cs
- BaseTemplateCodeDomTreeGenerator.cs
- AnimatedTypeHelpers.cs
- FieldNameLookup.cs
- ServiceHostingEnvironment.cs
- SqlCacheDependencyDatabase.cs
- ComplexObject.cs
- MemberCollection.cs
- Action.cs
- TaiwanLunisolarCalendar.cs
- DesignerWebPartChrome.cs
- UnicastIPAddressInformationCollection.cs
- VisualBasicExpressionConverter.cs
- TypedReference.cs
- QueryReaderSettings.cs
- SignatureHelper.cs
- X509CertificateRecipientServiceCredential.cs
- SqlConnectionPoolGroupProviderInfo.cs
- UpdatePanel.cs
- ReadOnlyKeyedCollection.cs
- HttpInputStream.cs
- GeneralTransform3DGroup.cs
- InitializerFacet.cs
- HttpDebugHandler.cs
- Accessible.cs
- SystemIPv6InterfaceProperties.cs
- HtmlShimManager.cs
- FunctionDetailsReader.cs
- RoleService.cs
- ReachFixedPageSerializer.cs
- ImpersonationOption.cs
- DesignTimeTemplateParser.cs
- ConfigurationConverterBase.cs
- StreamInfo.cs
- WebPartCollection.cs
- SamlDoNotCacheCondition.cs
- RegexRunnerFactory.cs
- ServiceNameElement.cs
- SqlRecordBuffer.cs
- AvTraceDetails.cs
- WebPartConnectionsCancelVerb.cs
- RelationshipEndCollection.cs
- SoapExtensionTypeElement.cs
- ToolStripManager.cs
- WpfXamlType.cs
- TraceUtils.cs
- OdbcTransaction.cs
- DataSourceCache.cs
- CodeVariableDeclarationStatement.cs
- SqlDataReader.cs
- CompilationRelaxations.cs
- XmlWriterTraceListener.cs
- GridLength.cs
- AstTree.cs
- Publisher.cs
- Win32Native.cs
- StoreItemCollection.Loader.cs
- MailDefinition.cs
- SafeUserTokenHandle.cs
- _SpnDictionary.cs
- SecurityDescriptor.cs
- ToolStripItemCollection.cs
- UxThemeWrapper.cs
- EntityDataSourceView.cs
- TextSpan.cs
- COM2TypeInfoProcessor.cs
- ActivityBuilderHelper.cs
- ProfilePropertyNameValidator.cs
- AddInController.cs
- RelatedEnd.cs
- LockCookie.cs
- SchemaMapping.cs
- DesignerProperties.cs
- XhtmlTextWriter.cs
- SamlConstants.cs
- UiaCoreTypesApi.cs
- _IPv4Address.cs
- OutputCache.cs
- DataGridViewColumnTypePicker.cs
- ApplicationException.cs
- ListControl.cs
- EraserBehavior.cs
- PreProcessor.cs
- AnnotationAdorner.cs
- CollectionBase.cs
- ToolboxItemAttribute.cs
- Int32Storage.cs
- AsymmetricKeyExchangeFormatter.cs
- DispatcherHooks.cs
- Hash.cs
- Rotation3DKeyFrameCollection.cs
- TraceData.cs
- LicenseContext.cs
- DataGridRow.cs