1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
//------------------------------------------------------------------------------
// <copyright file="ArrayListCollectionBase.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Diagnostics;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Security.Permissions;
namespace System.Web.UI.MobileControls
{
/*
* ArrayListCollectionBase class. Used as a base class by all collections that
* use an array list for its contents.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase"]/*' />
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public class ArrayListCollectionBase : ICollection
{
private ArrayList _items;
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.Items"]/*' />
protected ArrayList Items
{
get
{
if (_items == null)
{
_items = new ArrayList ();
}
return _items;
}
set
{
_items = value;
}
}
internal ArrayListCollectionBase()
{
}
internal ArrayListCollectionBase(ArrayList items)
{
_items = items;
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.Count"]/*' />
public int Count
{
get
{
return Items.Count;
}
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.IsReadOnly"]/*' />
public bool IsReadOnly
{
get
{
return Items.IsReadOnly;
}
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.IsSynchronized"]/*' />
public bool IsSynchronized
{
get
{
return false;
}
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.SyncRoot"]/*' />
public Object SyncRoot
{
get
{
return this;
}
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.CopyTo"]/*' />
public void CopyTo(Array array, int index)
{
foreach (Object item in Items)
{
array.SetValue (item, index++);
}
}
/// <include file='doc\ArrayListCollectionBase.uex' path='docs/doc[@for="ArrayListCollectionBase.GetEnumerator"]/*' />
public IEnumerator GetEnumerator()
{
return Items.GetEnumerator ();
}
}
}
|