55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
|
//-----------------------------------------------------------------------------
|
||
|
// 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<Bookmark>
|
||
|
{
|
||
|
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<Bookmark> multipleItems)
|
||
|
{
|
||
|
singleItem = base.SingleItem;
|
||
|
multipleItems = base.MultipleItems;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|