Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebParts / ConsumerConnectionPointCollection.cs / 1 / ConsumerConnectionPointCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ConsumerConnectionPointCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public ConsumerConnectionPointCollection() { } public ConsumerConnectionPointCollection(ICollection connectionPoints) { if (connectionPoints == null) { throw new ArgumentNullException("connectionPoints"); } _ids = new HybridDictionary(connectionPoints.Count, true /* caseInsensitive */); foreach (object obj in connectionPoints) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "connectionPoints"); } ConsumerConnectionPoint point = obj as ConsumerConnectionPoint; if (point == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "ConsumerConnectionPoint"), "connectionPoints"); } string id = point.ID; if (!_ids.Contains(id)) { InnerList.Add(point); _ids.Add(id, point); } else { throw new ArgumentException(SR.GetString( SR.WebPart_Collection_DuplicateID, "ConsumerConnectionPoint", id), "connectionPoints"); } } } public ConsumerConnectionPoint Default { get { return this[ConnectionPoint.DefaultID]; } } public ConsumerConnectionPoint this[int index] { get { return (ConsumerConnectionPoint)InnerList[index]; } } public ConsumerConnectionPoint this[string id] { get { return ((_ids != null) ? (ConsumerConnectionPoint)_ids[id] : null); } } public bool Contains(ConsumerConnectionPoint connectionPoint) { return InnerList.Contains(connectionPoint); } public int IndexOf(ConsumerConnectionPoint connectionPoint) { return InnerList.IndexOf(connectionPoint); } public void CopyTo(ConsumerConnectionPoint[] 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. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ConsumerConnectionPointCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public ConsumerConnectionPointCollection() { } public ConsumerConnectionPointCollection(ICollection connectionPoints) { if (connectionPoints == null) { throw new ArgumentNullException("connectionPoints"); } _ids = new HybridDictionary(connectionPoints.Count, true /* caseInsensitive */); foreach (object obj in connectionPoints) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "connectionPoints"); } ConsumerConnectionPoint point = obj as ConsumerConnectionPoint; if (point == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "ConsumerConnectionPoint"), "connectionPoints"); } string id = point.ID; if (!_ids.Contains(id)) { InnerList.Add(point); _ids.Add(id, point); } else { throw new ArgumentException(SR.GetString( SR.WebPart_Collection_DuplicateID, "ConsumerConnectionPoint", id), "connectionPoints"); } } } public ConsumerConnectionPoint Default { get { return this[ConnectionPoint.DefaultID]; } } public ConsumerConnectionPoint this[int index] { get { return (ConsumerConnectionPoint)InnerList[index]; } } public ConsumerConnectionPoint this[string id] { get { return ((_ids != null) ? (ConsumerConnectionPoint)_ids[id] : null); } } public bool Contains(ConsumerConnectionPoint connectionPoint) { return InnerList.Contains(connectionPoint); } public int IndexOf(ConsumerConnectionPoint connectionPoint) { return InnerList.IndexOf(connectionPoint); } public void CopyTo(ConsumerConnectionPoint[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ISO2022Encoding.cs
- KnownColorTable.cs
- DependencyObjectPropertyDescriptor.cs
- ButtonChrome.cs
- NavigationFailedEventArgs.cs
- TextureBrush.cs
- HWStack.cs
- Socket.cs
- SortedList.cs
- DataTemplateKey.cs
- TextSpanModifier.cs
- ISO2022Encoding.cs
- WindowsFormsEditorServiceHelper.cs
- shaperfactoryquerycacheentry.cs
- WebPartMenuStyle.cs
- TiffBitmapEncoder.cs
- TextSimpleMarkerProperties.cs
- BaseDataListActionList.cs
- NotCondition.cs
- FontFaceLayoutInfo.cs
- RuleAttributes.cs
- TogglePattern.cs
- DtdParser.cs
- DiffuseMaterial.cs
- SelectionRange.cs
- CharUnicodeInfo.cs
- SqlBulkCopy.cs
- DependentList.cs
- RequestCacheManager.cs
- RegexMatch.cs
- EmissiveMaterial.cs
- TableLayoutCellPaintEventArgs.cs
- SecurityManager.cs
- FaultContext.cs
- __Filters.cs
- SqlParameterCollection.cs
- TextServicesDisplayAttributePropertyRanges.cs
- TrailingSpaceComparer.cs
- SecurityException.cs
- PerformanceCountersElement.cs
- PrtCap_Reader.cs
- WebBrowser.cs
- CounterCreationData.cs
- DecimalAnimationUsingKeyFrames.cs
- CodeExpressionCollection.cs
- DeclarativeConditionsCollection.cs
- PipeStream.cs
- Group.cs
- ThemeInfoAttribute.cs
- SqlSelectStatement.cs
- ClientData.cs
- PageSettings.cs
- Vector3DKeyFrameCollection.cs
- TogglePatternIdentifiers.cs
- ScrollBarAutomationPeer.cs
- Calendar.cs
- odbcmetadatafactory.cs
- XmlILTrace.cs
- ProcessHost.cs
- DetailsViewDeletedEventArgs.cs
- UnsignedPublishLicense.cs
- ClientRolePrincipal.cs
- AppLevelCompilationSectionCache.cs
- GraphicsContainer.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- TextAdaptor.cs
- FixedTextView.cs
- SettingsBindableAttribute.cs
- ListViewUpdatedEventArgs.cs
- ExpressionConverter.cs
- BaseTemplateCodeDomTreeGenerator.cs
- SqlException.cs
- Point3DConverter.cs
- ShortcutKeysEditor.cs
- SecurityStandardsManager.cs
- TabItemAutomationPeer.cs
- RectAnimationClockResource.cs
- SafePEFileHandle.cs
- URI.cs
- TemplateKeyConverter.cs
- Evidence.cs
- TextTreeInsertElementUndoUnit.cs
- AmbientProperties.cs
- StreamGeometry.cs
- PointIndependentAnimationStorage.cs
- DropShadowBitmapEffect.cs
- ReadOnlyHierarchicalDataSourceView.cs
- RequestCacheValidator.cs
- DataGridAddNewRow.cs
- WindowsStatusBar.cs
- ListViewContainer.cs
- SystemException.cs
- XPathDescendantIterator.cs
- Select.cs
- DataGridViewBand.cs
- RenderData.cs
- SchemaNames.cs
- PopupEventArgs.cs
- SecurityTokenProviderContainer.cs
- TraceListener.cs