Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / CatalogPartCollection.cs / 2 / CatalogPartCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class CatalogPartCollection : ReadOnlyCollectionBase { public static readonly CatalogPartCollection Empty = new CatalogPartCollection(); public CatalogPartCollection() { } public CatalogPartCollection(ICollection catalogParts) { Initialize(null, catalogParts); } public CatalogPartCollection(CatalogPartCollection existingCatalogParts, ICollection catalogParts) { Initialize(existingCatalogParts, catalogParts); } public CatalogPart this[int index] { get { return (CatalogPart) InnerList[index]; } } public CatalogPart this[string id] { get { foreach (CatalogPart catalogPart in InnerList) { if (String.Equals(catalogPart.ID, id, StringComparison.OrdinalIgnoreCase)) { return catalogPart; } } return null; } } internal int Add(CatalogPart value) { return InnerList.Add(value); } public bool Contains(CatalogPart catalogPart) { return InnerList.Contains(catalogPart); } public void CopyTo(CatalogPart[] array, int index) { InnerList.CopyTo(array, index); } public int IndexOf(CatalogPart catalogPart) { return InnerList.IndexOf(catalogPart); } private void Initialize(CatalogPartCollection existingCatalogParts, ICollection catalogParts) { if (existingCatalogParts != null) { foreach (CatalogPart existingCatalogPart in existingCatalogParts) { // Don't need to InnerList.Add(existingCatalogPart); } } if (catalogParts != null) { foreach (object obj in catalogParts) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "catalogParts"); } if (!(obj is CatalogPart)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "CatalogPart"), "catalogParts"); } InnerList.Add(obj); } } } } } // 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
- XhtmlTextWriter.cs
- ClientTargetSection.cs
- UniformGrid.cs
- PrinterUnitConvert.cs
- WebPageTraceListener.cs
- FixedSOMPage.cs
- LinqDataSourceSelectEventArgs.cs
- TextSyndicationContent.cs
- RelationshipEndMember.cs
- Utility.cs
- TemplateContentLoader.cs
- JsonFormatGeneratorStatics.cs
- TreeBuilderXamlTranslator.cs
- Tuple.cs
- CustomError.cs
- SqlUtils.cs
- SplitterDesigner.cs
- MenuTracker.cs
- WebUtil.cs
- XmlAnyAttributeAttribute.cs
- EntityDataSourceQueryBuilder.cs
- DocumentPage.cs
- DataSourceHelper.cs
- EventDescriptorCollection.cs
- SkinBuilder.cs
- XmlChoiceIdentifierAttribute.cs
- HttpCacheVary.cs
- CommentEmitter.cs
- StickyNoteHelper.cs
- CompModSwitches.cs
- AnnouncementClient.cs
- baseaxisquery.cs
- XmlHelper.cs
- DynamicMetaObjectBinder.cs
- CommonObjectSecurity.cs
- DocumentOrderComparer.cs
- ParserContext.cs
- TableDetailsRow.cs
- HtmlControl.cs
- ExpandoClass.cs
- TreeNodeEventArgs.cs
- Configuration.cs
- IntranetCredentialPolicy.cs
- WeakReferenceList.cs
- ProfileSettingsCollection.cs
- PartialTrustVisibleAssembly.cs
- SqlDataSourceFilteringEventArgs.cs
- ByteStream.cs
- SqlDataReader.cs
- TimeSpanConverter.cs
- IntegerCollectionEditor.cs
- MaskedTextBox.cs
- HttpListenerContext.cs
- CompilerErrorCollection.cs
- CellQuery.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- FontStretchConverter.cs
- OdbcParameterCollection.cs
- SmiConnection.cs
- GridToolTip.cs
- StreamWriter.cs
- BroadcastEventHelper.cs
- exports.cs
- HttpConfigurationSystem.cs
- Pair.cs
- EventItfInfo.cs
- BamlResourceSerializer.cs
- StackBuilderSink.cs
- ConnectionPoint.cs
- FileSystemEventArgs.cs
- StorageEntitySetMapping.cs
- BevelBitmapEffect.cs
- EntityEntry.cs
- wgx_render.cs
- RawMouseInputReport.cs
- UIElement.cs
- FlowDocumentView.cs
- CodeIdentifiers.cs
- UserControlBuildProvider.cs
- ComboBoxItem.cs
- XMLSyntaxException.cs
- Bezier.cs
- ReferencedType.cs
- SqlNode.cs
- AttachedPropertyMethodSelector.cs
- DesignerActionHeaderItem.cs
- HttpResponseHeader.cs
- RequestUriProcessor.cs
- StrongNameUtility.cs
- AsyncCodeActivity.cs
- QueryOperatorEnumerator.cs
- LayoutManager.cs
- BindingMAnagerBase.cs
- PaperSource.cs
- DataSetSchema.cs
- _HelperAsyncResults.cs
- PropertyItemInternal.cs
- BaseAutoFormat.cs
- SafeNativeMethodsOther.cs
- OverflowException.cs