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
- XmlSignatureManifest.cs
- AutomationPeer.cs
- PrintPreviewDialog.cs
- HtmlTableCellCollection.cs
- StorageBasedPackageProperties.cs
- JsonFormatReaderGenerator.cs
- RemotingConfiguration.cs
- XPathAxisIterator.cs
- Baml2006Reader.cs
- FixedPageAutomationPeer.cs
- ClientBuildManagerCallback.cs
- SqlDataSourceStatusEventArgs.cs
- ReservationNotFoundException.cs
- UriTemplateMatchException.cs
- CrossAppDomainChannel.cs
- ConfigXmlElement.cs
- SessionStateUtil.cs
- MonthCalendarDesigner.cs
- CustomErrorsSection.cs
- ScrollItemPattern.cs
- XmlWrappingReader.cs
- GlyphingCache.cs
- TextHidden.cs
- PrintingPermission.cs
- SmiEventSink_Default.cs
- MethodToken.cs
- CalendarDataBindingHandler.cs
- IdentityReference.cs
- Site.cs
- MembershipValidatePasswordEventArgs.cs
- EventDescriptor.cs
- recordstatescratchpad.cs
- SiteIdentityPermission.cs
- httpstaticobjectscollection.cs
- ZeroOpNode.cs
- WindowsListViewSubItem.cs
- FormViewUpdatedEventArgs.cs
- RestHandler.cs
- xmlfixedPageInfo.cs
- BStrWrapper.cs
- RequestCacheValidator.cs
- WebConfigurationHost.cs
- TextParagraphProperties.cs
- DbConnectionPoolGroupProviderInfo.cs
- Expressions.cs
- HtmlInputHidden.cs
- CodeCommentStatementCollection.cs
- __ConsoleStream.cs
- OrthographicCamera.cs
- ETagAttribute.cs
- MimeMultiPart.cs
- FileDataSourceCache.cs
- RangeValidator.cs
- ZoneButton.cs
- DescendantBaseQuery.cs
- Vector3DKeyFrameCollection.cs
- DomainConstraint.cs
- UIElement.cs
- FormViewCommandEventArgs.cs
- EntityDataSourceStatementEditor.cs
- SqlGenericUtil.cs
- TreeNodeStyle.cs
- SelfIssuedAuthAsymmetricKey.cs
- GridViewRowEventArgs.cs
- BindingContext.cs
- ArrangedElementCollection.cs
- ComEventsInfo.cs
- AuthenticationConfig.cs
- RadioButtonPopupAdapter.cs
- DefaultEvaluationContext.cs
- ManagementException.cs
- FixedSOMPage.cs
- Debugger.cs
- Msmq.cs
- ImportDesigner.xaml.cs
- ThrowHelper.cs
- AspNetSynchronizationContext.cs
- IsolatedStoragePermission.cs
- Clipboard.cs
- SafeNativeMethods.cs
- KeyGestureConverter.cs
- Vector3DKeyFrameCollection.cs
- OleDbError.cs
- HostSecurityManager.cs
- FormViewModeEventArgs.cs
- WaveHeader.cs
- EmptyReadOnlyDictionaryInternal.cs
- UTF7Encoding.cs
- GetRecipientRequest.cs
- AggregateException.cs
- ColorMap.cs
- ILGenerator.cs
- DSASignatureFormatter.cs
- IntersectQueryOperator.cs
- NullableIntAverageAggregationOperator.cs
- _Connection.cs
- SchemaCollectionCompiler.cs
- ImageListUtils.cs
- ConcurrentBag.cs
- ButtonPopupAdapter.cs