Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Runtime / BookmarkList.cs / 1305376 / BookmarkList.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.Runtime { using System; using System.Runtime; using System.Runtime.Serialization; using System.Collections.ObjectModel; using System.Collections; using System.Collections.Generic; [DataContract] class BookmarkList : HybridCollection{ public BookmarkList() : base() { } internal bool Contains(Bookmark bookmark) { if (this.SingleItem != null) { if (this.SingleItem.Equals(bookmark)) { return true; } } else if (this.MultipleItems != null) { for (int i = 0; i < this.MultipleItems.Count; i++) { if (bookmark.Equals(this.MultipleItems[i])) { return true; } } } return false; } internal void TransferBookmarks(out Bookmark singleItem, out IList multipleItems) { singleItem = base.SingleItem; multipleItems = base.MultipleItems; } } } // 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
- mda.cs
- BypassElement.cs
- OutputCacheProviderCollection.cs
- VariableDesigner.xaml.cs
- AppDomain.cs
- Lease.cs
- SystemIPInterfaceProperties.cs
- ConstraintEnumerator.cs
- QilValidationVisitor.cs
- HttpCookie.cs
- EntityClientCacheEntry.cs
- DNS.cs
- XhtmlBasicImageAdapter.cs
- ComContractElement.cs
- RelatedImageListAttribute.cs
- KeyFrames.cs
- FloatMinMaxAggregationOperator.cs
- TextTreeTextElementNode.cs
- NotifyCollectionChangedEventArgs.cs
- HTMLTagNameToTypeMapper.cs
- DataGridRowEventArgs.cs
- DataGridViewSortCompareEventArgs.cs
- SafeCryptoKeyHandle.cs
- dsa.cs
- ContourSegment.cs
- FixedSOMFixedBlock.cs
- DataColumn.cs
- ContentTextAutomationPeer.cs
- OleAutBinder.cs
- GridViewColumnHeaderAutomationPeer.cs
- ButtonRenderer.cs
- EditingCommands.cs
- SqlXml.cs
- ServiceElementCollection.cs
- GeometryModel3D.cs
- TemplateParser.cs
- StoreItemCollection.Loader.cs
- DataGridViewComboBoxCell.cs
- RegexTree.cs
- ContentWrapperAttribute.cs
- FixedSOMPageElement.cs
- RepeaterDataBoundAdapter.cs
- EdmPropertyAttribute.cs
- ReadOnlyCollectionBase.cs
- InternalConfigSettingsFactory.cs
- ImageConverter.cs
- WindowsTitleBar.cs
- WebEventCodes.cs
- InitializationEventAttribute.cs
- HashCodeCombiner.cs
- jithelpers.cs
- EventItfInfo.cs
- WorkflowInstanceRecord.cs
- UniqueConstraint.cs
- XmlWellformedWriter.cs
- XmlElement.cs
- TextSerializer.cs
- DurableInstanceProvider.cs
- ListViewInsertEventArgs.cs
- DelegatedStream.cs
- TableParaClient.cs
- SafeTokenHandle.cs
- URI.cs
- MissingManifestResourceException.cs
- XPathScanner.cs
- DefaultShape.cs
- CodeMemberProperty.cs
- SqlClientFactory.cs
- XhtmlBasicImageAdapter.cs
- BindingUtils.cs
- FrameworkContentElement.cs
- OleDbException.cs
- EventLogSession.cs
- DragStartedEventArgs.cs
- GroupQuery.cs
- AuthenticateEventArgs.cs
- FixedDSBuilder.cs
- SafeProcessHandle.cs
- RegexWorker.cs
- DbProviderFactory.cs
- DeobfuscatingStream.cs
- FactoryGenerator.cs
- Rotation3D.cs
- Themes.cs
- DataGridViewComboBoxCell.cs
- PointAnimationUsingKeyFrames.cs
- ComponentDispatcherThread.cs
- ScriptingAuthenticationServiceSection.cs
- SqlDataSourceCommandParser.cs
- DesignerActionService.cs
- DynamicActionMessageFilter.cs
- TemplatePagerField.cs
- ComboBox.cs
- SamlAssertion.cs
- DescendantQuery.cs
- GridViewDeletedEventArgs.cs
- XmlNotation.cs
- ImageFormatConverter.cs
- XmlDictionaryReaderQuotasElement.cs
- ConsoleCancelEventArgs.cs