Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartDescriptionCollection.cs / 1 / WebPartDescriptionCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartDescriptionCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public WebPartDescriptionCollection() { } public WebPartDescriptionCollection(ICollection webPartDescriptions) { if (webPartDescriptions == null) { throw new ArgumentNullException("webPartDescriptions"); } _ids = new HybridDictionary(webPartDescriptions.Count, true /* caseInsensitive */); foreach (object obj in webPartDescriptions) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "webPartDescriptions"); } WebPartDescription description = obj as WebPartDescription; if (description == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "WebPartDescription"), "webPartDescriptions"); } string id = description.ID; if (!_ids.Contains(id)) { InnerList.Add(description); _ids.Add(id, description); } else { throw new ArgumentException(SR.GetString( SR.WebPart_Collection_DuplicateID, "WebPartDescription", id), "webPartDescriptions"); } } } public bool Contains(WebPartDescription value) { return InnerList.Contains(value); } public int IndexOf(WebPartDescription value) { return InnerList.IndexOf(value); } public WebPartDescription this[int index] { get { return (WebPartDescription) InnerList[index]; } } public WebPartDescription this[string id] { get { return ((_ids != null) ? (WebPartDescription)_ids[id] : null); } } public void CopyTo(WebPartDescription[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartDescriptionCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public WebPartDescriptionCollection() { } public WebPartDescriptionCollection(ICollection webPartDescriptions) { if (webPartDescriptions == null) { throw new ArgumentNullException("webPartDescriptions"); } _ids = new HybridDictionary(webPartDescriptions.Count, true /* caseInsensitive */); foreach (object obj in webPartDescriptions) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "webPartDescriptions"); } WebPartDescription description = obj as WebPartDescription; if (description == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "WebPartDescription"), "webPartDescriptions"); } string id = description.ID; if (!_ids.Contains(id)) { InnerList.Add(description); _ids.Add(id, description); } else { throw new ArgumentException(SR.GetString( SR.WebPart_Collection_DuplicateID, "WebPartDescription", id), "webPartDescriptions"); } } } public bool Contains(WebPartDescription value) { return InnerList.Contains(value); } public int IndexOf(WebPartDescription value) { return InnerList.IndexOf(value); } public WebPartDescription this[int index] { get { return (WebPartDescription) InnerList[index]; } } public WebPartDescription this[string id] { get { return ((_ids != null) ? (WebPartDescription)_ids[id] : null); } } public void CopyTo(WebPartDescription[] array, int index) { InnerList.CopyTo(array, index); } } } // 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
- Point.cs
- ScrollItemPattern.cs
- _NegoState.cs
- DataSourceHelper.cs
- SQLString.cs
- ReferenceEqualityComparer.cs
- TrustSection.cs
- CompModSwitches.cs
- FloaterBaseParaClient.cs
- OperationValidationEventArgs.cs
- ExpressionBinding.cs
- RemoveStoryboard.cs
- NameObjectCollectionBase.cs
- AdjustableArrowCap.cs
- SqlNotificationRequest.cs
- OleDbTransaction.cs
- ThreadAbortException.cs
- ToolStripPanelRow.cs
- AuthenticatingEventArgs.cs
- ToolboxItemFilterAttribute.cs
- ImageListUtils.cs
- WhitespaceSignificantCollectionAttribute.cs
- HashFinalRequest.cs
- ObjectAssociationEndMapping.cs
- ProfileParameter.cs
- SmtpDigestAuthenticationModule.cs
- SmiEventStream.cs
- SchemaNotation.cs
- CommandField.cs
- Button.cs
- PromptStyle.cs
- XmlNavigatorStack.cs
- EpmTargetTree.cs
- XmlEntity.cs
- MemberHolder.cs
- DocumentReferenceCollection.cs
- EventManager.cs
- RawUIStateInputReport.cs
- BooleanFunctions.cs
- ProtocolReflector.cs
- Function.cs
- dtdvalidator.cs
- SafeBitVector32.cs
- CommandDevice.cs
- AssemblyAttributes.cs
- ConstraintEnumerator.cs
- EntityDataSourceDesignerHelper.cs
- UpWmlMobileTextWriter.cs
- StringSorter.cs
- X509UI.cs
- EventToken.cs
- PrinterResolution.cs
- RayMeshGeometry3DHitTestResult.cs
- ExecutionEngineException.cs
- MiniModule.cs
- BooleanToVisibilityConverter.cs
- GridViewSelectEventArgs.cs
- XmlAttributes.cs
- ViewStateModeByIdAttribute.cs
- ToolBarPanel.cs
- KeyFrames.cs
- XmlElementCollection.cs
- HtmlControlDesigner.cs
- TypeForwardedFromAttribute.cs
- MultilineStringConverter.cs
- ECDiffieHellmanPublicKey.cs
- ClientProxyGenerator.cs
- QueryOperator.cs
- DataRowExtensions.cs
- TextModifier.cs
- WindowsRebar.cs
- Cursor.cs
- HttpModuleActionCollection.cs
- AlgoModule.cs
- DateTimeOffsetStorage.cs
- CodeAccessSecurityEngine.cs
- RootBrowserWindow.cs
- ScaleTransform.cs
- MimeTextImporter.cs
- VisualStyleElement.cs
- TransformValueSerializer.cs
- EventLogTraceListener.cs
- brushes.cs
- FixedSOMPage.cs
- TextTreeUndo.cs
- ResourceIDHelper.cs
- TableCellCollection.cs
- XmlSchemaValidator.cs
- SecurityException.cs
- EntityDataSourceState.cs
- X509AsymmetricSecurityKey.cs
- FixedHyperLink.cs
- ValueQuery.cs
- PublisherMembershipCondition.cs
- ProcessHostConfigUtils.cs
- ProtocolsConfigurationHandler.cs
- BrowsableAttribute.cs
- PasswordTextContainer.cs
- WaitHandle.cs
- MonthCalendar.cs