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 / ConnectionInterfaceCollection.cs / 1 / ConnectionInterfaceCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ConnectionInterfaceCollection : ReadOnlyCollectionBase { public static readonly ConnectionInterfaceCollection Empty = new ConnectionInterfaceCollection(); public ConnectionInterfaceCollection() { } public ConnectionInterfaceCollection(ICollection connectionInterfaces) { Initialize(null, connectionInterfaces); } public ConnectionInterfaceCollection(ConnectionInterfaceCollection existingConnectionInterfaces, ICollection connectionInterfaces) { Initialize(existingConnectionInterfaces, connectionInterfaces); } private void Initialize(ConnectionInterfaceCollection existingConnectionInterfaces, ICollection connectionInterfaces) { if (existingConnectionInterfaces != null) { foreach (Type existingConnectionInterface in existingConnectionInterfaces) { // Don't need to check arg, since we know it is valid since it came // from a ConnectionInterfaceCollection. InnerList.Add(existingConnectionInterface); } } if (connectionInterfaces != null) { foreach (object obj in connectionInterfaces) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "connectionInterfaces"); } if (!(obj is Type)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "Type"), "connectionInterfaces"); } InnerList.Add(obj); } } } public bool Contains(Type value) { return InnerList.Contains(value); } public int IndexOf(Type value) { return InnerList.IndexOf(value); } public Type this[int index] { get { return (Type)InnerList[index]; } } public void CopyTo(Type[] 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.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ConnectionInterfaceCollection : ReadOnlyCollectionBase { public static readonly ConnectionInterfaceCollection Empty = new ConnectionInterfaceCollection(); public ConnectionInterfaceCollection() { } public ConnectionInterfaceCollection(ICollection connectionInterfaces) { Initialize(null, connectionInterfaces); } public ConnectionInterfaceCollection(ConnectionInterfaceCollection existingConnectionInterfaces, ICollection connectionInterfaces) { Initialize(existingConnectionInterfaces, connectionInterfaces); } private void Initialize(ConnectionInterfaceCollection existingConnectionInterfaces, ICollection connectionInterfaces) { if (existingConnectionInterfaces != null) { foreach (Type existingConnectionInterface in existingConnectionInterfaces) { // Don't need to check arg, since we know it is valid since it came // from a ConnectionInterfaceCollection. InnerList.Add(existingConnectionInterface); } } if (connectionInterfaces != null) { foreach (object obj in connectionInterfaces) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "connectionInterfaces"); } if (!(obj is Type)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "Type"), "connectionInterfaces"); } InnerList.Add(obj); } } } public bool Contains(Type value) { return InnerList.Contains(value); } public int IndexOf(Type value) { return InnerList.IndexOf(value); } public Type this[int index] { get { return (Type)InnerList[index]; } } public void CopyTo(Type[] 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
- IsolatedStorage.cs
- InitializerFacet.cs
- SoapReflector.cs
- FontWeights.cs
- precedingsibling.cs
- ReadOnlyKeyedCollection.cs
- OptionalMessageQuery.cs
- DataBoundControlHelper.cs
- EpmSourceTree.cs
- LineInfo.cs
- EntityEntry.cs
- RemotingClientProxy.cs
- PageHandlerFactory.cs
- HtmlInputFile.cs
- TableLayoutSettings.cs
- PathSegment.cs
- WindowsListBox.cs
- FixedSOMSemanticBox.cs
- MatrixKeyFrameCollection.cs
- BitmapEffectGeneralTransform.cs
- DispatcherObject.cs
- MarshalDirectiveException.cs
- BitmapImage.cs
- SkipQueryOptionExpression.cs
- ObjectListItemCollection.cs
- FrameworkContentElement.cs
- ClientData.cs
- IntSecurity.cs
- NullableDoubleMinMaxAggregationOperator.cs
- ObjectResult.cs
- CreatingCookieEventArgs.cs
- _AutoWebProxyScriptEngine.cs
- ToolStripManager.cs
- MaterialGroup.cs
- AssemblySettingAttributes.cs
- GPPOINT.cs
- XmlBoundElement.cs
- Int64KeyFrameCollection.cs
- XmlSchemaComplexContentRestriction.cs
- UndoUnit.cs
- GetLedgerEntryForRecipientRequest.cs
- DesignRelation.cs
- XmlTextWriter.cs
- ExtensionQuery.cs
- HealthMonitoringSection.cs
- XsdDateTime.cs
- FileNotFoundException.cs
- StrokeNodeEnumerator.cs
- OleDbInfoMessageEvent.cs
- DuplicateWaitObjectException.cs
- AccessedThroughPropertyAttribute.cs
- Maps.cs
- SafeNativeMethods.cs
- Collection.cs
- XmlNamespaceMapping.cs
- ProfileInfo.cs
- DataGridCellEditEndingEventArgs.cs
- MatrixStack.cs
- GrabHandleGlyph.cs
- ClientData.cs
- RunInstallerAttribute.cs
- EDesignUtil.cs
- ComponentSerializationService.cs
- StrokeFIndices.cs
- ClickablePoint.cs
- MergeLocalizationDirectives.cs
- ContainsSearchOperator.cs
- HttpConfigurationSystem.cs
- PeerCollaboration.cs
- HttpInputStream.cs
- SoapParser.cs
- ServiceSecurityContext.cs
- DataSvcMapFileSerializer.cs
- ToolStripItemTextRenderEventArgs.cs
- DataObjectCopyingEventArgs.cs
- GridPattern.cs
- UniqueSet.cs
- Helpers.cs
- TreeViewImageIndexConverter.cs
- EntityAdapter.cs
- TextPenaltyModule.cs
- MimeFormatExtensions.cs
- RequestTimeoutManager.cs
- BaseHashHelper.cs
- Int16Converter.cs
- SamlSecurityTokenAuthenticator.cs
- SqlVersion.cs
- PermissionSet.cs
- RolePrincipal.cs
- ServerValidateEventArgs.cs
- ProxyHelper.cs
- CounterCreationData.cs
- AudioException.cs
- ServiceDiscoveryBehavior.cs
- ScrollPattern.cs
- LocatorPartList.cs
- SQLInt16Storage.cs
- MaterialGroup.cs
- GeometryCombineModeValidation.cs
- PublishLicense.cs