Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Statements / BookmarkTable.cs / 1305376 / BookmarkTable.cs
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------
namespace System.Activities.Statements
{
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Runtime;
[DataContract]
class BookmarkTable
{
//Number of bookmarks used internally
static int tableSize = Enum.GetValues(typeof(CompensationBookmarkName)).Length;
[DataMember]
Bookmark[] bookmarkTable;
public BookmarkTable()
{
this.bookmarkTable = new Bookmark[tableSize];
}
public Bookmark this[CompensationBookmarkName bookmarkName]
{
get
{
return this.bookmarkTable[(int)bookmarkName];
}
set
{
this.bookmarkTable[(int)bookmarkName] = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- contentDescriptor.cs
- DiscriminatorMap.cs
- HijriCalendar.cs
- BinaryFormatter.cs
- PageThemeCodeDomTreeGenerator.cs
- XmlDocumentFragment.cs
- SchemaElement.cs
- IsolatedStorage.cs
- PrintingPermission.cs
- ComponentRenameEvent.cs
- GeometryCombineModeValidation.cs
- PackageProperties.cs
- MouseActionValueSerializer.cs
- ProfilePropertySettings.cs
- FilterableAttribute.cs
- FlowPanelDesigner.cs
- HttpDebugHandler.cs
- SessionStateSection.cs
- ScriptComponentDescriptor.cs
- MdbDataFileEditor.cs
- DesignerRegion.cs
- SectionRecord.cs
- safelinkcollection.cs
- Int32Rect.cs
- CompiledELinqQueryState.cs
- VectorCollection.cs
- WebPartConnectionsDisconnectVerb.cs
- SqlInternalConnectionSmi.cs
- RtfControlWordInfo.cs
- WebBrowserEvent.cs
- ConfigurationPermission.cs
- FontSource.cs
- DropDownList.cs
- ServiceContractGenerationContext.cs
- PersonalizationStateInfo.cs
- Constant.cs
- StateRuntime.cs
- MetricEntry.cs
- EventBuilder.cs
- PerformanceCounterPermission.cs
- CompoundFileStreamReference.cs
- xdrvalidator.cs
- HtmlForm.cs
- InProcStateClientManager.cs
- IPeerNeighbor.cs
- NativeConfigurationLoader.cs
- WorkflowRuntimeBehavior.cs
- AddressHeaderCollectionElement.cs
- XmlEncoding.cs
- SynchronizationLockException.cs
- StrongBox.cs
- ValidatedControlConverter.cs
- LocalizationParserHooks.cs
- PropertyState.cs
- ErrorsHelper.cs
- DataColumnChangeEvent.cs
- ActivityExecutorDelegateInfo.cs
- KnownTypesHelper.cs
- BaseResourcesBuildProvider.cs
- AssemblyResourceLoader.cs
- ReturnType.cs
- SubstitutionList.cs
- PriorityQueue.cs
- ProjectionPathBuilder.cs
- DoubleLinkListEnumerator.cs
- DbDataSourceEnumerator.cs
- Byte.cs
- MemberPathMap.cs
- ClassValidator.cs
- NeutralResourcesLanguageAttribute.cs
- CoreSwitches.cs
- ArithmeticException.cs
- TextServicesDisplayAttribute.cs
- XmlDocumentSurrogate.cs
- PartitionedStreamMerger.cs
- EpmSyndicationContentSerializer.cs
- AudioLevelUpdatedEventArgs.cs
- DrawingBrush.cs
- StateBag.cs
- MutexSecurity.cs
- TypeDescriptor.cs
- XmlSchemaNotation.cs
- HandlerBase.cs
- Cursor.cs
- Constraint.cs
- CodeSnippetCompileUnit.cs
- EncryptedXml.cs
- TdsRecordBufferSetter.cs
- ToolboxItemCollection.cs
- ViewDesigner.cs
- HostedTcpTransportManager.cs
- PathFigure.cs
- SqlFunctionAttribute.cs
- ExpressionEditorAttribute.cs
- TheQuery.cs
- Transform3D.cs
- KeyNotFoundException.cs
- DragEventArgs.cs
- ErrorStyle.cs
- PropertyTab.cs