Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Bookmark.cs / 1305376 / Bookmark.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities { using System; using System.Activities.Hosting; using System.Activities.Runtime; using System.Collections.Generic; using System.Runtime; using System.Runtime.Serialization; using System.Globalization; [DataContract] [Fx.Tag.XamlVisible(false)] public class Bookmark : IEquatable{ static Bookmark asyncOperationCompletionBookmark = new Bookmark(-1); static IEqualityComparer comparer; //Used only when exclusive scopes are involved [DataMember(EmitDefaultValue = false, Order = 2)] ExclusiveHandleList exclusiveHandlesThatReferenceThis; [DataMember(EmitDefaultValue = false, Order = 0)] long id; [DataMember(EmitDefaultValue = false, Order = 1)] string externalName; Bookmark(long id) { Fx.Assert(id != 0, "id should not be zero"); this.id = id; } public Bookmark(string name) { if (string.IsNullOrEmpty(name)) { throw FxTrace.Exception.ArgumentNullOrEmpty("name"); } this.externalName = name; } internal static Bookmark AsyncOperationCompletionBookmark { get { return asyncOperationCompletionBookmark; } } internal static IEqualityComparer Comparer { get { if (comparer == null) { comparer = new BookmarkComparer(); } return comparer; } } [DataMember(EmitDefaultValue = false)] internal BookmarkScope Scope { get; set; } internal bool IsNamed { get { return this.id == 0; } } public string Name { get { if (this.IsNamed) { return this.externalName; } else { return string.Empty; } } } internal long Id { get { Fx.Assert(!this.IsNamed, "We should only get the id for unnamed bookmarks."); return this.id; } } internal ExclusiveHandleList ExclusiveHandles { get { return this.exclusiveHandlesThatReferenceThis; } set { this.exclusiveHandlesThatReferenceThis = value; } } internal static Bookmark Create(long id) { return new Bookmark(id); } internal BookmarkInfo GenerateBookmarkInfo(BookmarkCallbackWrapper bookmarkCallback) { Fx.Assert(this.IsNamed, "Can only generate BookmarkInfo for external bookmarks"); BookmarkScopeInfo scopeInfo = null; if (this.Scope != null) { scopeInfo = this.Scope.GenerateScopeInfo(); } return new BookmarkInfo(this.externalName, bookmarkCallback.ActivityInstance.Activity.DisplayName, scopeInfo); } public bool Equals(Bookmark other) { if (object.ReferenceEquals(other, null)) { return false; } if (this.IsNamed) { return other.IsNamed && this.externalName == other.externalName; } else { return this.id == other.id; } } public override bool Equals(object obj) { return this.Equals(obj as Bookmark); } public override int GetHashCode() { if (this.IsNamed) { return this.externalName.GetHashCode(); } else { return this.id.GetHashCode(); } } public override string ToString() { if (this.IsNamed) { return this.Name; } else { return this.Id.ToString(CultureInfo.InvariantCulture); } } [DataContract] class BookmarkComparer : IEqualityComparer { public BookmarkComparer() { } public bool Equals(Bookmark x, Bookmark y) { if (object.ReferenceEquals(x, null)) { return object.ReferenceEquals(y, null); } return x.Equals(y); } public int GetHashCode(Bookmark obj) { return obj.GetHashCode(); } } } } // 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
- GZipDecoder.cs
- DrawingCollection.cs
- TextBox.cs
- SoapInteropTypes.cs
- Shape.cs
- AsyncOperation.cs
- NativeMethods.cs
- TypeConverter.cs
- ProvidePropertyAttribute.cs
- MimeBasePart.cs
- Input.cs
- AdjustableArrowCap.cs
- ListBindingHelper.cs
- MultipleViewPattern.cs
- Emitter.cs
- HMACRIPEMD160.cs
- HandleCollector.cs
- BaseCollection.cs
- CompensatableSequenceActivity.cs
- ParallelTimeline.cs
- ThemeableAttribute.cs
- UpdateProgress.cs
- EventArgs.cs
- XmlSchemaExporter.cs
- ColumnMapProcessor.cs
- DocumentXmlWriter.cs
- VirtualizedCellInfoCollection.cs
- Label.cs
- FontStretch.cs
- SettingsAttributeDictionary.cs
- XmlHierarchyData.cs
- ContextMenuAutomationPeer.cs
- CompiledXpathExpr.cs
- wmiprovider.cs
- ImageListUtils.cs
- Helper.cs
- MediaElement.cs
- ContainerCodeDomSerializer.cs
- DataServiceProviderWrapper.cs
- JsonWriter.cs
- BulletChrome.cs
- CounterCreationData.cs
- LogReserveAndAppendState.cs
- IsolatedStorageException.cs
- SqlCacheDependencySection.cs
- ExtensionFile.cs
- CompilerCollection.cs
- TrackBar.cs
- SafeCryptoHandles.cs
- CodeEntryPointMethod.cs
- Matrix.cs
- StreamBodyWriter.cs
- KeyInterop.cs
- GridEntryCollection.cs
- ExternalFile.cs
- CompiledIdentityConstraint.cs
- SqlMethodAttribute.cs
- DesignerSerializationOptionsAttribute.cs
- _RequestLifetimeSetter.cs
- PerfCounterSection.cs
- ServiceDescriptionData.cs
- XmlAttributeAttribute.cs
- DataGridViewAddColumnDialog.cs
- DoubleAnimationBase.cs
- InfiniteIntConverter.cs
- DecimalConverter.cs
- QueryTaskGroupState.cs
- HostingPreferredMapPath.cs
- DataGridViewBand.cs
- WebPartCatalogAddVerb.cs
- SystemBrushes.cs
- ConfigurationStrings.cs
- EventLogTraceListener.cs
- PointAnimationUsingPath.cs
- ListViewInsertionMark.cs
- ContentElement.cs
- XmlArrayAttribute.cs
- TextTreeDeleteContentUndoUnit.cs
- PageTheme.cs
- TextWriter.cs
- DetailsViewRowCollection.cs
- TypeUsage.cs
- DataSet.cs
- ModelItemCollection.cs
- ActivitySurrogateSelector.cs
- SymbolTable.cs
- DynamicValidatorEventArgs.cs
- ItemsControl.cs
- ConstrainedDataObject.cs
- BuilderInfo.cs
- NativeMethodsOther.cs
- ConnectionPointCookie.cs
- PerformanceCounterLib.cs
- CssClassPropertyAttribute.cs
- CacheVirtualItemsEvent.cs
- ZipIOFileItemStream.cs
- TextLineBreak.cs
- SafeReversePInvokeHandle.cs
- newinstructionaction.cs
- FrameworkObject.cs