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
- FontEmbeddingManager.cs
- DataRow.cs
- Int64Converter.cs
- DataServiceHostFactory.cs
- IdnMapping.cs
- MgmtConfigurationRecord.cs
- FigureHelper.cs
- _LazyAsyncResult.cs
- DoubleUtil.cs
- NameSpaceExtractor.cs
- AudioLevelUpdatedEventArgs.cs
- CmsInterop.cs
- CheckedListBox.cs
- IndicFontClient.cs
- TextDecorationLocationValidation.cs
- SchemaTypeEmitter.cs
- WebPartTransformerAttribute.cs
- SqlFunctionAttribute.cs
- RulePatternOps.cs
- PasswordBox.cs
- DelayLoadType.cs
- IdentityManager.cs
- Utilities.cs
- DictionaryBase.cs
- GenericPrincipal.cs
- InputScopeAttribute.cs
- CodeMethodReturnStatement.cs
- Point3DConverter.cs
- Marshal.cs
- WebPartTransformerCollection.cs
- CodeSnippetCompileUnit.cs
- ConnectionManagementElementCollection.cs
- ResourceIDHelper.cs
- ReadOnlyNameValueCollection.cs
- BindingObserver.cs
- SmtpMail.cs
- WebPartCollection.cs
- XmlMapping.cs
- CreateSequenceResponse.cs
- EntityDataSourceChangingEventArgs.cs
- URLString.cs
- ThicknessConverter.cs
- PropertyGrid.cs
- RouteParser.cs
- RowType.cs
- DynamicILGenerator.cs
- DataSourceCacheDurationConverter.cs
- CodeNamespace.cs
- TemplatePropertyEntry.cs
- dsa.cs
- RectangleGeometry.cs
- WaitHandle.cs
- SQLString.cs
- SaveCardRequest.cs
- Material.cs
- SQLCharsStorage.cs
- PresentationAppDomainManager.cs
- COAUTHINFO.cs
- Operand.cs
- RequestQueryProcessor.cs
- ClientBuildManager.cs
- DataGridRowAutomationPeer.cs
- IList.cs
- RoutingExtension.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- DefaultClaimSet.cs
- ColumnResizeUndoUnit.cs
- SolidColorBrush.cs
- IdentityNotMappedException.cs
- FatalException.cs
- WebDescriptionAttribute.cs
- sqlstateclientmanager.cs
- EncodingInfo.cs
- TextServicesCompartmentContext.cs
- GridViewPageEventArgs.cs
- EtwTrace.cs
- LessThan.cs
- DispatcherEventArgs.cs
- AlternateView.cs
- CustomAssemblyResolver.cs
- TransformProviderWrapper.cs
- SelectorAutomationPeer.cs
- DocumentXmlWriter.cs
- GeneralTransform2DTo3D.cs
- WindowInteropHelper.cs
- XmlSerializerFactory.cs
- Sentence.cs
- ValueConversionAttribute.cs
- ResourceDisplayNameAttribute.cs
- TransactionFlowBindingElementImporter.cs
- ExtensionSimplifierMarkupObject.cs
- _BufferOffsetSize.cs
- HtmlImage.cs
- MessageBox.cs
- Int32CollectionValueSerializer.cs
- AssemblyAssociatedContentFileAttribute.cs
- Operand.cs
- CompletedAsyncResult.cs
- AuthorizationRule.cs
- HashCodeCombiner.cs