Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ErrorWebPart.cs
- TransformerConfigurationWizardBase.cs
- ToolStripItem.cs
- WorkflowApplicationEventArgs.cs
- SafeNativeMethodsCLR.cs
- HatchBrush.cs
- BindMarkupExtensionSerializer.cs
- GeneralTransform3D.cs
- TreeWalker.cs
- WindowsClientElement.cs
- WorkflowServiceBehavior.cs
- PathParser.cs
- CollectionExtensions.cs
- BitmapEffectGroup.cs
- ObjectContext.cs
- CollectionType.cs
- AccessViolationException.cs
- GenericAuthenticationEventArgs.cs
- Error.cs
- XmlEventCache.cs
- LocalValueEnumerator.cs
- UTF7Encoding.cs
- SafeCryptoKeyHandle.cs
- RenderDataDrawingContext.cs
- BitmapPalette.cs
- RequestUriProcessor.cs
- IdentifierCreationService.cs
- DesignTimeVisibleAttribute.cs
- XmlCustomFormatter.cs
- GlyphManager.cs
- BuildProvidersCompiler.cs
- CodeDelegateCreateExpression.cs
- AlphaSortedEnumConverter.cs
- TemplatePropertyEntry.cs
- XXXOnTypeBuilderInstantiation.cs
- ResourceCodeDomSerializer.cs
- BamlStream.cs
- ChtmlTextWriter.cs
- MetadataCache.cs
- TextSpan.cs
- StatusCommandUI.cs
- EndpointAddress.cs
- TriggerAction.cs
- SynthesizerStateChangedEventArgs.cs
- CollectionViewSource.cs
- XmlSchemaComplexType.cs
- InstancePersistenceException.cs
- DESCryptoServiceProvider.cs
- DateTimeOffsetConverter.cs
- BamlReader.cs
- FormatSettings.cs
- TemplatedMailWebEventProvider.cs
- BamlTreeNode.cs
- DnsPermission.cs
- AppSettingsExpressionBuilder.cs
- ConfigurationException.cs
- DataBoundLiteralControl.cs
- AsyncWaitHandle.cs
- Exceptions.cs
- JsonUriDataContract.cs
- MexHttpBindingCollectionElement.cs
- JoinSymbol.cs
- ManifestBasedResourceGroveler.cs
- StorageEntitySetMapping.cs
- SqlConnection.cs
- TextBoxBase.cs
- GenericTypeParameterBuilder.cs
- IDQuery.cs
- TimeSpanParse.cs
- EpmTargetPathSegment.cs
- ExpressionCopier.cs
- MostlySingletonList.cs
- FamilyCollection.cs
- DataGridItemEventArgs.cs
- ConditionCollection.cs
- SiteMapNodeItem.cs
- UserControl.cs
- CodeTypeConstructor.cs
- CDSCollectionETWBCLProvider.cs
- TemplateControlCodeDomTreeGenerator.cs
- RegistrationServices.cs
- NativeMethods.cs
- WpfGeneratedKnownTypes.cs
- SafeFindHandle.cs
- DataTableTypeConverter.cs
- MailMessageEventArgs.cs
- AnnotationDocumentPaginator.cs
- StoryFragments.cs
- StateItem.cs
- RelationshipFixer.cs
- ExtensionWindowHeader.cs
- MemoryResponseElement.cs
- DataGridViewLinkColumn.cs
- Scheduler.cs
- LinqDataSourceDisposeEventArgs.cs
- CompiledELinqQueryState.cs
- MonitoringDescriptionAttribute.cs
- ConnectionPoint.cs
- TypeConverterHelper.cs
- SqlDataSourceFilteringEventArgs.cs