Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / DocumentCollection.cs / 1305376 / DocumentCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name = "FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class DesignerCollection : ICollection { private IList designers; ////// Provides a read-only collection of documents. /// ////// public DesignerCollection(IDesignerHost[] designers) { if (designers != null) { this.designers = new ArrayList(designers); } else { this.designers = new ArrayList(); } } ////// Initializes a new instance of the ///class /// that stores an array with a pointer to each /// for each document in the collection. /// /// public DesignerCollection(IList designers) { this.designers = designers; } ////// Initializes a new instance of the ///class /// that stores an array with a pointer to each /// for each document in the collection. /// /// public int Count { get { return designers.Count; } } ///Gets or /// sets the number /// of documents in the collection. ////// public virtual IDesignerHost this[int index] { get { return (IDesignerHost)designers[index]; } } ///Gets /// or sets the document at the specified index. ////// public IEnumerator GetEnumerator() { return designers.GetEnumerator(); } ///Creates and retrieves a new enumerator for this collection. ///int ICollection.Count { get { return Count; } } /// bool ICollection.IsSynchronized { get { return false; } } /// object ICollection.SyncRoot { get { return null; } } /// void ICollection.CopyTo(Array array, int index) { designers.CopyTo(array, index); } /// IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Runtime.InteropServices; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name = "FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class DesignerCollection : ICollection { private IList designers; ////// Provides a read-only collection of documents. /// ////// public DesignerCollection(IDesignerHost[] designers) { if (designers != null) { this.designers = new ArrayList(designers); } else { this.designers = new ArrayList(); } } ////// Initializes a new instance of the ///class /// that stores an array with a pointer to each /// for each document in the collection. /// /// public DesignerCollection(IList designers) { this.designers = designers; } ////// Initializes a new instance of the ///class /// that stores an array with a pointer to each /// for each document in the collection. /// /// public int Count { get { return designers.Count; } } ///Gets or /// sets the number /// of documents in the collection. ////// public virtual IDesignerHost this[int index] { get { return (IDesignerHost)designers[index]; } } ///Gets /// or sets the document at the specified index. ////// public IEnumerator GetEnumerator() { return designers.GetEnumerator(); } ///Creates and retrieves a new enumerator for this collection. ///int ICollection.Count { get { return Count; } } /// bool ICollection.IsSynchronized { get { return false; } } /// object ICollection.SyncRoot { get { return null; } } /// void ICollection.CopyTo(Array array, int index) { designers.CopyTo(array, index); } /// IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } // 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
- Baml2006ReaderFrame.cs
- Compiler.cs
- WebPartDisplayModeCollection.cs
- SoapFault.cs
- FormViewPageEventArgs.cs
- CreateUserWizardStep.cs
- ElementsClipboardData.cs
- TypeHelper.cs
- TypeConverterHelper.cs
- Marshal.cs
- InkPresenterAutomationPeer.cs
- XmlNodeChangedEventArgs.cs
- ValueTypeFixupInfo.cs
- NonClientArea.cs
- ImageIndexConverter.cs
- DiffuseMaterial.cs
- ColumnResizeUndoUnit.cs
- Form.cs
- CompiledRegexRunner.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- SchemaAttDef.cs
- LowerCaseStringConverter.cs
- BulletedList.cs
- RecommendedAsConfigurableAttribute.cs
- NumberFormatInfo.cs
- CalendarTable.cs
- ExtendedPropertyDescriptor.cs
- TableCellCollection.cs
- PeerToPeerException.cs
- Visual3D.cs
- SR.Designer.cs
- Attributes.cs
- MergeEnumerator.cs
- GridToolTip.cs
- FunctionParameter.cs
- Int32Converter.cs
- ReflectionServiceProvider.cs
- ApplicationActivator.cs
- TypedTableBaseExtensions.cs
- TouchDevice.cs
- PropertyToken.cs
- SendMailErrorEventArgs.cs
- XmlWriterTraceListener.cs
- RenderCapability.cs
- MostlySingletonList.cs
- FixedFlowMap.cs
- WinInet.cs
- RuleSettingsCollection.cs
- ResourceDescriptionAttribute.cs
- XmlNullResolver.cs
- DivideByZeroException.cs
- WindowProviderWrapper.cs
- HttpMethodConstraint.cs
- SecurityState.cs
- DateTimeUtil.cs
- ExceptionHandlers.cs
- WindowsTokenRoleProvider.cs
- AccessibleObject.cs
- SqlConnectionHelper.cs
- Metafile.cs
- SpeakProgressEventArgs.cs
- XmlComment.cs
- ListViewInsertEventArgs.cs
- XmlTextEncoder.cs
- GradientBrush.cs
- GridViewUpdateEventArgs.cs
- MonitoringDescriptionAttribute.cs
- TypeUtil.cs
- QuotedPrintableStream.cs
- RSAPKCS1SignatureDeformatter.cs
- OleServicesContext.cs
- SessionStateModule.cs
- OleDbCommandBuilder.cs
- ReflectTypeDescriptionProvider.cs
- Cell.cs
- GcSettings.cs
- NativeMethods.cs
- SqlGatherProducedAliases.cs
- DocumentGridContextMenu.cs
- MultipartContentParser.cs
- ProfilePropertyMetadata.cs
- SaveFileDialog.cs
- XmlChildNodes.cs
- Scheduling.cs
- Overlapped.cs
- GridViewUpdatedEventArgs.cs
- PropertyEntry.cs
- TdsParserSessionPool.cs
- XmlDeclaration.cs
- StateRuntime.cs
- StringPropertyBuilder.cs
- AppLevelCompilationSectionCache.cs
- DtdParser.cs
- TableCellCollection.cs
- SHA512.cs
- SystemColors.cs
- XmlSchemas.cs
- PropertyGrid.cs
- IPEndPointCollection.cs
- ParameterReplacerVisitor.cs