Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebParts / ProviderConnectionPointCollection.cs / 1 / ProviderConnectionPointCollection.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.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ProviderConnectionPointCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public ProviderConnectionPointCollection() { } public ProviderConnectionPointCollection(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"); } ProviderConnectionPoint point = obj as ProviderConnectionPoint; if (point == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "ProviderConnectionPoint"), "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, "ProviderConnectionPoint", id), "connectionPoints"); } } } public ProviderConnectionPoint Default { get { return this[ConnectionPoint.DefaultID]; } } public ProviderConnectionPoint this[int index] { get { return (ProviderConnectionPoint)InnerList[index]; } } public ProviderConnectionPoint this[string id] { get { return ((_ids != null) ? (ProviderConnectionPoint)_ids[id] : null); } } public bool Contains(ProviderConnectionPoint connectionPoint) { return InnerList.Contains(connectionPoint); } public int IndexOf(ProviderConnectionPoint connectionPoint) { return InnerList.IndexOf(connectionPoint); } public void CopyTo(ProviderConnectionPoint[] 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; using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ProviderConnectionPointCollection : ReadOnlyCollectionBase { private HybridDictionary _ids; public ProviderConnectionPointCollection() { } public ProviderConnectionPointCollection(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"); } ProviderConnectionPoint point = obj as ProviderConnectionPoint; if (point == null) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "ProviderConnectionPoint"), "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, "ProviderConnectionPoint", id), "connectionPoints"); } } } public ProviderConnectionPoint Default { get { return this[ConnectionPoint.DefaultID]; } } public ProviderConnectionPoint this[int index] { get { return (ProviderConnectionPoint)InnerList[index]; } } public ProviderConnectionPoint this[string id] { get { return ((_ids != null) ? (ProviderConnectionPoint)_ids[id] : null); } } public bool Contains(ProviderConnectionPoint connectionPoint) { return InnerList.Contains(connectionPoint); } public int IndexOf(ProviderConnectionPoint connectionPoint) { return InnerList.IndexOf(connectionPoint); } public void CopyTo(ProviderConnectionPoint[] 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
- DbDataSourceEnumerator.cs
- CodeTypeMemberCollection.cs
- VScrollProperties.cs
- ReflectionUtil.cs
- SpellerInterop.cs
- GridSplitter.cs
- ButtonColumn.cs
- BlockUIContainer.cs
- DocumentPageView.cs
- WaitForChangedResult.cs
- PolyLineSegment.cs
- IncrementalHitTester.cs
- _SslSessionsCache.cs
- XmlUrlEditor.cs
- ObjectStateManager.cs
- WebPartTransformerCollection.cs
- TextFormatterImp.cs
- WSFederationHttpSecurityElement.cs
- ColumnPropertiesGroup.cs
- SecurityTokenException.cs
- XPathSelectionIterator.cs
- XsltInput.cs
- XmlWrappingReader.cs
- PersonalizationEntry.cs
- HttpProtocolImporter.cs
- mda.cs
- RankException.cs
- WebMessageBodyStyleHelper.cs
- ComplexLine.cs
- TypeConverter.cs
- Line.cs
- FieldAccessException.cs
- Line.cs
- CookieHandler.cs
- TextSchema.cs
- ObfuscateAssemblyAttribute.cs
- MultilineStringConverter.cs
- ProjectionCamera.cs
- PersonalizationStateInfo.cs
- RoleManagerEventArgs.cs
- OrderPreservingMergeHelper.cs
- LoaderAllocator.cs
- TableItemStyle.cs
- WeakReadOnlyCollection.cs
- ResourceContainer.cs
- MimeFormReflector.cs
- RegexGroup.cs
- TagPrefixAttribute.cs
- CheckableControlBaseAdapter.cs
- ErrorHandler.cs
- DefaultTraceListener.cs
- SortDescriptionCollection.cs
- RuleSettingsCollection.cs
- JsonStringDataContract.cs
- VirtualizedItemProviderWrapper.cs
- FormatSettings.cs
- SourceChangedEventArgs.cs
- Environment.cs
- SQLBytes.cs
- XmlWrappingReader.cs
- TemplateNameScope.cs
- BamlTreeMap.cs
- CancelAsyncOperationRequest.cs
- Model3DGroup.cs
- ExceptionHelpers.cs
- WebRequestModuleElementCollection.cs
- KnownTypes.cs
- FileDialog.cs
- DesignerDataTableBase.cs
- LinqDataSourceDisposeEventArgs.cs
- ExtendedProtectionPolicyElement.cs
- PointAnimationUsingKeyFrames.cs
- TriggerBase.cs
- SrgsRulesCollection.cs
- OracleParameter.cs
- DynamicMetaObject.cs
- DeferredElementTreeState.cs
- DispatchChannelSink.cs
- SmiEventSink_DeferedProcessing.cs
- OpenFileDialog.cs
- ReferenceTypeElement.cs
- KeyTime.cs
- StylusTip.cs
- InstanceCreationEditor.cs
- DynamicResourceExtension.cs
- RijndaelManagedTransform.cs
- CoTaskMemHandle.cs
- WebPartDisplayModeCancelEventArgs.cs
- Profiler.cs
- Psha1DerivedKeyGeneratorHelper.cs
- ViewgenContext.cs
- RestHandlerFactory.cs
- BindingNavigator.cs
- PeerCredential.cs
- LassoSelectionBehavior.cs
- AffineTransform3D.cs
- SafePEFileHandle.cs
- DropShadowEffect.cs
- AnimatedTypeHelpers.cs
- HttpPostClientProtocol.cs