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 / EditorPartCollection.cs / 1 / EditorPartCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class EditorPartCollection : ReadOnlyCollectionBase { public static readonly EditorPartCollection Empty = new EditorPartCollection(); public EditorPartCollection() { } public EditorPartCollection(ICollection editorParts) { Initialize(null, editorParts); } public EditorPartCollection(EditorPartCollection existingEditorParts, ICollection editorParts) { Initialize(existingEditorParts, editorParts); } public EditorPart this[int index] { get { return (EditorPart) InnerList[index]; } } internal int Add(EditorPart value) { return InnerList.Add(value); } public bool Contains(EditorPart editorPart) { return InnerList.Contains(editorPart); } public void CopyTo(EditorPart[] array, int index) { InnerList.CopyTo(array, index); } public int IndexOf(EditorPart editorPart) { return InnerList.IndexOf(editorPart); } private void Initialize(EditorPartCollection existingEditorParts, ICollection editorParts) { if (existingEditorParts != null) { foreach (EditorPart existingEditorPart in existingEditorParts) { // Don't need to check arg, since we know it is valid since it came // from an EditorPartCollection. InnerList.Add(existingEditorPart); } } if (editorParts != null) { foreach (object obj in editorParts) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "editorParts"); } if (!(obj is EditorPart)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "EditorPart"), "editorParts"); } InnerList.Add(obj); } } } } } // 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.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class EditorPartCollection : ReadOnlyCollectionBase { public static readonly EditorPartCollection Empty = new EditorPartCollection(); public EditorPartCollection() { } public EditorPartCollection(ICollection editorParts) { Initialize(null, editorParts); } public EditorPartCollection(EditorPartCollection existingEditorParts, ICollection editorParts) { Initialize(existingEditorParts, editorParts); } public EditorPart this[int index] { get { return (EditorPart) InnerList[index]; } } internal int Add(EditorPart value) { return InnerList.Add(value); } public bool Contains(EditorPart editorPart) { return InnerList.Contains(editorPart); } public void CopyTo(EditorPart[] array, int index) { InnerList.CopyTo(array, index); } public int IndexOf(EditorPart editorPart) { return InnerList.IndexOf(editorPart); } private void Initialize(EditorPartCollection existingEditorParts, ICollection editorParts) { if (existingEditorParts != null) { foreach (EditorPart existingEditorPart in existingEditorParts) { // Don't need to check arg, since we know it is valid since it came // from an EditorPartCollection. InnerList.Add(existingEditorPart); } } if (editorParts != null) { foreach (object obj in editorParts) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "editorParts"); } if (!(obj is EditorPart)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "EditorPart"), "editorParts"); } InnerList.Add(obj); } } } } } // 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
- CodeConstructor.cs
- X509CertificateChain.cs
- TextReader.cs
- Int32Collection.cs
- SuppressMessageAttribute.cs
- IisTraceWebEventProvider.cs
- SamlSecurityToken.cs
- BindingExpressionBase.cs
- StylusPlugin.cs
- ContentPropertyAttribute.cs
- NetworkInterface.cs
- InternalBase.cs
- HttpWebResponse.cs
- DynamicPropertyHolder.cs
- LocalizabilityAttribute.cs
- MsmqProcessProtocolHandler.cs
- SHA1Managed.cs
- GridViewDeleteEventArgs.cs
- StandardToolWindows.cs
- SecurityTokenException.cs
- Latin1Encoding.cs
- SecurityTokenResolver.cs
- DataRelationPropertyDescriptor.cs
- DataServiceHostWrapper.cs
- DataKeyCollection.cs
- TemplateComponentConnector.cs
- GestureRecognizer.cs
- EventLogException.cs
- TitleStyle.cs
- Int64AnimationBase.cs
- SafeMILHandle.cs
- StringAnimationUsingKeyFrames.cs
- ColorAnimationBase.cs
- ServiceContractViewControl.Designer.cs
- Rect3DValueSerializer.cs
- _CommandStream.cs
- SafeCryptContextHandle.cs
- ExtenderControl.cs
- TrackBarRenderer.cs
- WorkflowRuntimeBehavior.cs
- ControlParameter.cs
- PersonalizationEntry.cs
- FixedHyperLink.cs
- VirtualStackFrame.cs
- DataGridItemAttachedStorage.cs
- WorkflowServiceHostFactory.cs
- ByteAnimationBase.cs
- PriorityChain.cs
- Connection.cs
- CatalogPartChrome.cs
- NaturalLanguageHyphenator.cs
- DynamicDataRoute.cs
- UpdateException.cs
- DefaultBinder.cs
- Html32TextWriter.cs
- GeneralTransform3DGroup.cs
- SQlBooleanStorage.cs
- SQLBytesStorage.cs
- Preprocessor.cs
- PlatformCulture.cs
- NavigationProperty.cs
- CodeMethodMap.cs
- TransactionScopeDesigner.cs
- Zone.cs
- CustomErrorCollection.cs
- OletxDependentTransaction.cs
- DataTableExtensions.cs
- NativeBuffer.cs
- CodeMethodReturnStatement.cs
- EntityType.cs
- SmtpMail.cs
- LoginView.cs
- TreeNodeConverter.cs
- HotSpot.cs
- StrokeCollection2.cs
- RoleExceptions.cs
- AccessText.cs
- LifetimeServices.cs
- AppSecurityManager.cs
- CodeVariableDeclarationStatement.cs
- Command.cs
- ImageIndexConverter.cs
- AddInProcess.cs
- PropertyInfo.cs
- DependsOnAttribute.cs
- ColorPalette.cs
- ReferenceConverter.cs
- PropertyTab.cs
- ArrayList.cs
- CorruptingExceptionCommon.cs
- ColumnMap.cs
- TreeNodeEventArgs.cs
- DeviceContext2.cs
- AudioLevelUpdatedEventArgs.cs
- StructureChangedEventArgs.cs
- StringInfo.cs
- CodeValidator.cs
- XmlWhitespace.cs
- InternalBufferManager.cs
- InspectionWorker.cs