Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / TemplateGroupCollection.cs / 1 / TemplateGroupCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design { using System; using System.Collections; using System.Design; using System.Globalization; ////// /// Provides the necessary functionality for a template editing verb collection /// public sealed class TemplateGroupCollection : IList { private ArrayList _list; ///public TemplateGroupCollection() { } internal TemplateGroupCollection(TemplateGroup[] verbs) { for (int i = 0; i < verbs.Length; i++) { Add(verbs[i]); } } /// public int Count { get { return InternalList.Count; } } private ArrayList InternalList { get { if (_list == null) { _list = new ArrayList(); } return _list; } } /// public TemplateGroup this[int index] { get { return (TemplateGroup)InternalList[index]; } set { InternalList[index] = value; } } /// public int Add(TemplateGroup group) { return InternalList.Add(group); } public void AddRange(TemplateGroupCollection groups) { InternalList.AddRange(groups); } /// public void Clear() { InternalList.Clear(); } /// public bool Contains(TemplateGroup group) { return InternalList.Contains(group); } /// public void CopyTo(TemplateGroup[] array, int index) { InternalList.CopyTo(array, index); } /// public int IndexOf(TemplateGroup group) { return InternalList.IndexOf(group); } /// public void Insert(int index, TemplateGroup group) { InternalList.Insert(index, group); } /// public void Remove(TemplateGroup group) { InternalList.Remove(group); } /// public void RemoveAt(int index) { InternalList.RemoveAt(index); } #region IList implementation /// /// int ICollection.Count { get { return Count; } } /// /// bool IList.IsFixedSize { get { return InternalList.IsFixedSize; } } /// /// bool IList.IsReadOnly { get { return InternalList.IsReadOnly; } } /// /// bool ICollection.IsSynchronized { get { return InternalList.IsSynchronized; } } /// /// object ICollection.SyncRoot { get { return InternalList.SyncRoot; } } /// /// object IList.this[int index] { get { return this[index]; } set { if (!(value is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "value"); } this[index] = (TemplateGroup)value; } } /// /// int IList.Add(object o) { if (!(o is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "o"); } return Add((TemplateGroup)o); } /// /// void IList.Clear() { Clear(); } /// /// bool IList.Contains(object o) { if (!(o is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "o"); } return Contains((TemplateGroup)o); } /// /// void ICollection.CopyTo(Array array, int index) { InternalList.CopyTo(array, index); } /// /// IEnumerator IEnumerable.GetEnumerator() { return InternalList.GetEnumerator(); } /// /// int IList.IndexOf(object o) { if (!(o is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "o"); } return IndexOf((TemplateGroup)o); } /// /// void IList.Insert(int index, object o) { if (!(o is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "o"); } Insert(index, (TemplateGroup)o); } /// /// void IList.Remove(object o) { if (!(o is TemplateGroup)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, SR.GetString(SR.WrongType), "TemplateGroup"), "o"); } Remove((TemplateGroup)o); } /// /// void IList.RemoveAt(int index) { RemoveAt(index); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OleDbCommand.cs
- WorkflowTerminatedException.cs
- XsdDataContractExporter.cs
- LinqDataSource.cs
- ServicePoint.cs
- String.cs
- __Error.cs
- AutomationPeer.cs
- TextModifierScope.cs
- DocumentPageView.cs
- WebPartMenuStyle.cs
- DownloadProgressEventArgs.cs
- QualifierSet.cs
- DataListAutoFormat.cs
- Package.cs
- ProfilePropertySettings.cs
- XmlAttributeOverrides.cs
- MergeFilterQuery.cs
- InfiniteTimeSpanConverter.cs
- Char.cs
- HTMLTagNameToTypeMapper.cs
- PropertyFilterAttribute.cs
- MemberRelationshipService.cs
- EdmFunctions.cs
- DataGridViewRowCancelEventArgs.cs
- VersionPair.cs
- CompositeCollectionView.cs
- MutableAssemblyCacheEntry.cs
- AccessDataSourceWizardForm.cs
- EventPropertyMap.cs
- TabControl.cs
- ComUdtElementCollection.cs
- AuthenticationManager.cs
- TagElement.cs
- X500Name.cs
- BitStream.cs
- _ShellExpression.cs
- NamespaceDecl.cs
- CoTaskMemHandle.cs
- ManagementExtension.cs
- FormsAuthentication.cs
- CurrentChangingEventArgs.cs
- UnsafeNativeMethods.cs
- EntityContainerAssociationSet.cs
- EmptyControlCollection.cs
- PropertyCollection.cs
- XmlMembersMapping.cs
- VisualStyleRenderer.cs
- HierarchicalDataSourceIDConverter.cs
- CodeMemberProperty.cs
- DataControlCommands.cs
- ListControlConvertEventArgs.cs
- Delay.cs
- PackUriHelper.cs
- XmlChoiceIdentifierAttribute.cs
- WebUtil.cs
- StaticDataManager.cs
- DbProviderFactories.cs
- MailMessageEventArgs.cs
- Thread.cs
- DataGridItemAttachedStorage.cs
- IsolatedStorageFilePermission.cs
- TrackingProfileCache.cs
- VectorValueSerializer.cs
- ValueChangedEventManager.cs
- XmlSchemaAttribute.cs
- Signature.cs
- BuildProviderCollection.cs
- SettingsProviderCollection.cs
- AlphabeticalEnumConverter.cs
- FormsAuthenticationCredentials.cs
- WebPartDisplayModeEventArgs.cs
- OciHandle.cs
- Hash.cs
- ServiceHostFactory.cs
- NestPullup.cs
- VariantWrapper.cs
- CompilerTypeWithParams.cs
- FontWeight.cs
- AttributeParameterInfo.cs
- GcSettings.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- HttpHandlerAction.cs
- PrivacyNoticeBindingElementImporter.cs
- ProfilePropertySettingsCollection.cs
- IListConverters.cs
- RequestCacheEntry.cs
- InvariantComparer.cs
- PackagePartCollection.cs
- ArithmeticLiteral.cs
- SystemIPv6InterfaceProperties.cs
- WebPartUserCapability.cs
- HttpModulesSection.cs
- TextPenaltyModule.cs
- SqlRemoveConstantOrderBy.cs
- BCryptNative.cs
- Misc.cs
- XmlElementCollection.cs
- FileChangesMonitor.cs
- CharacterString.cs