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
- ModelPerspective.cs
- WorkflowApplicationException.cs
- RangeValueProviderWrapper.cs
- TabletDevice.cs
- MultiPropertyDescriptorGridEntry.cs
- MemberInitExpression.cs
- XamlTreeBuilder.cs
- WindowsImpersonationContext.cs
- Button.cs
- TypeElement.cs
- Evidence.cs
- WebScriptServiceHostFactory.cs
- Assembly.cs
- COM2ComponentEditor.cs
- RemoteWebConfigurationHostStream.cs
- TimeZone.cs
- RSAPKCS1SignatureDeformatter.cs
- TextEndOfLine.cs
- Stream.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- CheckableControlBaseAdapter.cs
- DataGridRelationshipRow.cs
- IndexerNameAttribute.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- HttpContextServiceHost.cs
- MergeExecutor.cs
- EventWaitHandleSecurity.cs
- WriteTimeStream.cs
- RuntimeArgument.cs
- DebugView.cs
- OutArgumentConverter.cs
- ProfileProvider.cs
- StringValidatorAttribute.cs
- WebPartCollection.cs
- RawKeyboardInputReport.cs
- UnsafeNativeMethodsCLR.cs
- WebPartTransformer.cs
- VisualCollection.cs
- XmlAttribute.cs
- Tool.cs
- SqlCachedBuffer.cs
- XpsFontSerializationService.cs
- ContextDataSource.cs
- ProgressBar.cs
- ResourceContainer.cs
- SpotLight.cs
- DesignSurfaceManager.cs
- EmbeddedObject.cs
- RightsManagementEncryptionTransform.cs
- WMIGenerator.cs
- UnauthorizedAccessException.cs
- DictionaryContent.cs
- Condition.cs
- ScrollChrome.cs
- HttpRuntimeSection.cs
- StandardToolWindows.cs
- DataGridViewColumnStateChangedEventArgs.cs
- ServiceProviders.cs
- MetricEntry.cs
- EventSinkActivity.cs
- AsymmetricSignatureDeformatter.cs
- CompilerLocalReference.cs
- ClientCultureInfo.cs
- ModelUIElement3D.cs
- TabPageDesigner.cs
- ListDictionary.cs
- GroupBox.cs
- MessageDirection.cs
- FilePrompt.cs
- PeerToPeerException.cs
- FontFamilyConverter.cs
- XmlMemberMapping.cs
- WindowsFormsHelpers.cs
- DetailsViewUpdatedEventArgs.cs
- WorkflowRuntimeEndpoint.cs
- ServiceBusyException.cs
- NumberFunctions.cs
- EntityDataSourceWrapper.cs
- HwndStylusInputProvider.cs
- AutomationPropertyInfo.cs
- InkCanvasSelection.cs
- DrawingAttributeSerializer.cs
- IdentityNotMappedException.cs
- EventPropertyMap.cs
- ProcessModelSection.cs
- Monitor.cs
- MinMaxParagraphWidth.cs
- ExecutionContext.cs
- WorkflowControlClient.cs
- SharedUtils.cs
- XmlDataImplementation.cs
- Single.cs
- GeneratedCodeAttribute.cs
- SiteMapHierarchicalDataSourceView.cs
- CombinedGeometry.cs
- OptimizedTemplateContent.cs
- CompiledIdentityConstraint.cs
- BitmapEditor.cs
- DataGridViewCellParsingEventArgs.cs
- DataError.cs