Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / ProviderConnectionPointCollection.cs / 1305376 / 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; 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; 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
- BindingSource.cs
- BoundingRectTracker.cs
- FixedTextSelectionProcessor.cs
- Translator.cs
- GeneralTransform3DCollection.cs
- BCLDebug.cs
- StaticExtensionConverter.cs
- HwndTarget.cs
- TemplateNameScope.cs
- Command.cs
- PropertyDescriptor.cs
- ResourcePool.cs
- BulletedList.cs
- BaseComponentEditor.cs
- Select.cs
- Graph.cs
- MsdtcWrapper.cs
- counter.cs
- unsafeIndexingFilterStream.cs
- WebPermission.cs
- XpsFilter.cs
- AssociatedControlConverter.cs
- CapabilitiesState.cs
- SmiEventSink_Default.cs
- VariantWrapper.cs
- SqlDataReaderSmi.cs
- Matrix.cs
- MenuCommands.cs
- UiaCoreProviderApi.cs
- SoapFault.cs
- DateTimeOffset.cs
- VerificationAttribute.cs
- UiaCoreProviderApi.cs
- TreeNodeEventArgs.cs
- Vector3DAnimationBase.cs
- FormsAuthenticationEventArgs.cs
- XamlClipboardData.cs
- CrossAppDomainChannel.cs
- SemaphoreFullException.cs
- DateTimeFormatInfoScanner.cs
- ConsoleKeyInfo.cs
- StandardOleMarshalObject.cs
- PermissionSetTriple.cs
- SqlConnectionPoolProviderInfo.cs
- PathGradientBrush.cs
- webproxy.cs
- ColorAnimation.cs
- CompleteWizardStep.cs
- SignatureHelper.cs
- FieldToken.cs
- ArraySegment.cs
- MenuAdapter.cs
- Pkcs9Attribute.cs
- ServerValidateEventArgs.cs
- RuleSettings.cs
- ToolStripOverflowButton.cs
- DiscoveryClientDocuments.cs
- XmlLanguageConverter.cs
- ReadOnlyAttribute.cs
- Marshal.cs
- PrtTicket_Base.cs
- DATA_BLOB.cs
- RequestResizeEvent.cs
- X509CertificateCollection.cs
- SmtpMail.cs
- CodeTypeMember.cs
- Duration.cs
- MailMessageEventArgs.cs
- InlinedAggregationOperator.cs
- CheckBoxRenderer.cs
- NetworkInterface.cs
- PerspectiveCamera.cs
- Facet.cs
- XmlCharacterData.cs
- ResolveNextArgumentWorkItem.cs
- FromReply.cs
- _ConnectOverlappedAsyncResult.cs
- LinkClickEvent.cs
- XmlResolver.cs
- ApplicationServiceManager.cs
- _ContextAwareResult.cs
- XmlStreamNodeWriter.cs
- ScopedKnownTypes.cs
- WebPartDescription.cs
- ConfigurationValues.cs
- WindowsFormsDesignerOptionService.cs
- WebScriptEnablingBehavior.cs
- XmlTextAttribute.cs
- DirectoryObjectSecurity.cs
- AccessText.cs
- PersonalizationState.cs
- MethodCallExpression.cs
- TrustLevel.cs
- DataGridViewCellPaintingEventArgs.cs
- LinqDataSourceSelectEventArgs.cs
- ActivityCodeDomSerializationManager.cs
- SqlLiftIndependentRowExpressions.cs
- DataRowCollection.cs
- CreateUserWizardStep.cs
- newinstructionaction.cs