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
- Crc32Helper.cs
- mda.cs
- ItemChangedEventArgs.cs
- QueryMath.cs
- HtmlFormWrapper.cs
- TreeViewCancelEvent.cs
- ServiceNotStartedException.cs
- ClientApiGenerator.cs
- TileBrush.cs
- XsdCachingReader.cs
- MdiWindowListItemConverter.cs
- BooleanFunctions.cs
- ItemsControlAutomationPeer.cs
- ToolStripMenuItemDesigner.cs
- counter.cs
- NumberFormatter.cs
- TargetControlTypeCache.cs
- BitmapPalette.cs
- InvariantComparer.cs
- ContentType.cs
- ReliableChannelListener.cs
- EventLogSession.cs
- XpsStructure.cs
- httpapplicationstate.cs
- BeginStoryboard.cs
- DataServiceProviderMethods.cs
- FlowPosition.cs
- ArrangedElementCollection.cs
- PermissionSetTriple.cs
- CommonDialog.cs
- ValueType.cs
- ToolStripControlHost.cs
- TransformConverter.cs
- Typography.cs
- SqlUtil.cs
- OpCodes.cs
- ObjectTag.cs
- FormClosedEvent.cs
- HttpFileCollection.cs
- Utils.cs
- HtmlControl.cs
- NavigationPropertyEmitter.cs
- AudioFormatConverter.cs
- SqlHelper.cs
- VectorCollection.cs
- Binding.cs
- CommandBindingCollection.cs
- TextEditorSpelling.cs
- UndoEngine.cs
- IHttpResponseInternal.cs
- SoapAttributes.cs
- GridViewEditEventArgs.cs
- PeerInvitationResponse.cs
- SystemIPv6InterfaceProperties.cs
- ArrayListCollectionBase.cs
- ScriptControl.cs
- FixedFindEngine.cs
- XmlQueryRuntime.cs
- SqlFunctions.cs
- XPathDocument.cs
- ByteStack.cs
- ImageListUtils.cs
- OleDbException.cs
- FormViewInsertedEventArgs.cs
- VisualBrush.cs
- DataGridViewColumnEventArgs.cs
- SqlParameterCollection.cs
- RequiredAttributeAttribute.cs
- CookieParameter.cs
- PasswordDeriveBytes.cs
- DiagnosticsElement.cs
- RecordsAffectedEventArgs.cs
- ConfigurationSchemaErrors.cs
- ConfigXmlAttribute.cs
- SourceSwitch.cs
- RecognizedWordUnit.cs
- RegistrationServices.cs
- XmlMemberMapping.cs
- OutputCacheSettingsSection.cs
- SqlInternalConnectionSmi.cs
- WindowsProgressbar.cs
- UTF7Encoding.cs
- ConnectorRouter.cs
- ToolStripManager.cs
- VoiceChangeEventArgs.cs
- PageWrapper.cs
- WebResponse.cs
- TdsParserSessionPool.cs
- WaitHandleCannotBeOpenedException.cs
- Evidence.cs
- HtmlContainerControl.cs
- DataIdProcessor.cs
- AuthenticateEventArgs.cs
- SafeMarshalContext.cs
- __Error.cs
- SecurityContextTokenCache.cs
- EncodingNLS.cs
- UpdateTranslator.cs
- OperandQuery.cs
- SolidColorBrush.cs