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
- RoleManagerModule.cs
- Authorization.cs
- AssociationSet.cs
- SingleConverter.cs
- FixedSOMLineRanges.cs
- SmiContextFactory.cs
- AssociationSet.cs
- TemplateColumn.cs
- MimeMapping.cs
- HttpResponseInternalWrapper.cs
- ArrayEditor.cs
- InputMethodStateTypeInfo.cs
- DynamicUpdateCommand.cs
- DataGridViewComboBoxColumnDesigner.cs
- MediaScriptCommandRoutedEventArgs.cs
- CustomAttribute.cs
- TemplateBamlTreeBuilder.cs
- SystemIPInterfaceStatistics.cs
- PipelineModuleStepContainer.cs
- HandlerBase.cs
- FrameworkElement.cs
- SecurityUniqueId.cs
- NonSerializedAttribute.cs
- CodeMemberField.cs
- QuerySettings.cs
- ObjectTag.cs
- basemetadatamappingvisitor.cs
- AvTraceDetails.cs
- HostedTransportConfigurationBase.cs
- RuntimeArgumentHandle.cs
- ImageConverter.cs
- ICspAsymmetricAlgorithm.cs
- PropertyRecord.cs
- CriticalFinalizerObject.cs
- ObjectConverter.cs
- ReadOnlyDictionary.cs
- GeneratedView.cs
- precedingquery.cs
- SqlCharStream.cs
- oledbconnectionstring.cs
- StylusCaptureWithinProperty.cs
- SqlMultiplexer.cs
- SqlCaseSimplifier.cs
- WpfWebRequestHelper.cs
- ColorMatrix.cs
- OracleBFile.cs
- PartEditor.cs
- CodePageUtils.cs
- ListViewSortEventArgs.cs
- SignerInfo.cs
- DebugView.cs
- SHA256.cs
- ServiceHttpHandlerFactory.cs
- ChannelSinkStacks.cs
- MethodAccessException.cs
- RoleManagerSection.cs
- EntityCommand.cs
- MaterialCollection.cs
- FieldDescriptor.cs
- EventListenerClientSide.cs
- CapabilitiesState.cs
- DataSourceSelectArguments.cs
- BuildManager.cs
- ListBindingHelper.cs
- TreeWalkHelper.cs
- ApplicationServiceManager.cs
- XmlSchemaNotation.cs
- DataGridColumnHeaderAutomationPeer.cs
- EnumValidator.cs
- HttpListenerElement.cs
- FilterQueryOptionExpression.cs
- NTAccount.cs
- Expressions.cs
- Int32CollectionConverter.cs
- ConfigXmlAttribute.cs
- IndexerHelper.cs
- _AutoWebProxyScriptHelper.cs
- TypeNameHelper.cs
- DataBoundLiteralControl.cs
- FrameworkRichTextComposition.cs
- TemplateNameScope.cs
- FileAccessException.cs
- TextFragmentEngine.cs
- InternalResources.cs
- ZipFileInfoCollection.cs
- InfoCardRSACryptoProvider.cs
- FontStyleConverter.cs
- OptimizedTemplateContent.cs
- Comparer.cs
- HostExecutionContextManager.cs
- DefaultHttpHandler.cs
- Psha1DerivedKeyGeneratorHelper.cs
- UIElementHelper.cs
- TraceListeners.cs
- UnsafeNativeMethods.cs
- XmlRootAttribute.cs
- ProxySimple.cs
- HebrewCalendar.cs
- Visitors.cs
- SiteMap.cs