Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / Design / DocumentCollection.cs / 1 / 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
- CodeStatementCollection.cs
- SoapHeader.cs
- SelectionService.cs
- SharedHttpsTransportManager.cs
- BrowserCapabilitiesCodeGenerator.cs
- PersistenceProvider.cs
- Activator.cs
- IisTraceWebEventProvider.cs
- SingleSelectRootGridEntry.cs
- SiteMapNodeCollection.cs
- BufferModeSettings.cs
- ResourceDescriptionAttribute.cs
- ListBindingHelper.cs
- ISAPIWorkerRequest.cs
- EventsTab.cs
- ToolStripPanelRenderEventArgs.cs
- HostedHttpRequestAsyncResult.cs
- SafeNativeMethods.cs
- SafeHGlobalHandleCritical.cs
- HttpProxyCredentialType.cs
- EventHandlingScope.cs
- SqlCommandSet.cs
- BamlLocalizationDictionary.cs
- EnumerableRowCollection.cs
- TextStore.cs
- RegularExpressionValidator.cs
- AsymmetricCryptoHandle.cs
- MasterPageParser.cs
- Assert.cs
- DomainUpDown.cs
- EvidenceBase.cs
- WindowsListViewGroupHelper.cs
- _SpnDictionary.cs
- ObjectDataSourceEventArgs.cs
- DriveInfo.cs
- XmlSchemaComplexContent.cs
- PackageStore.cs
- MouseGestureValueSerializer.cs
- _OSSOCK.cs
- XmlSchemaValidator.cs
- KerberosSecurityTokenAuthenticator.cs
- XmlChoiceIdentifierAttribute.cs
- WebPartConnectionsConnectVerb.cs
- PointHitTestResult.cs
- PropertyInfo.cs
- DomainUpDown.cs
- DataGridViewTextBoxEditingControl.cs
- AdCreatedEventArgs.cs
- MetadataReference.cs
- DataGridCaption.cs
- Point3DAnimationUsingKeyFrames.cs
- ExpressionConverter.cs
- cache.cs
- ColorAnimationUsingKeyFrames.cs
- JoinCqlBlock.cs
- SchemaNames.cs
- GridViewDeletedEventArgs.cs
- HGlobalSafeHandle.cs
- MetadataSerializer.cs
- DependencyProperty.cs
- DependencyObjectType.cs
- PrimitiveXmlSerializers.cs
- UserControlBuildProvider.cs
- TypeUsage.cs
- SqlConnectionPoolGroupProviderInfo.cs
- HashAlgorithm.cs
- Item.cs
- DCSafeHandle.cs
- ComponentEvent.cs
- HttpValueCollection.cs
- ErrorFormatterPage.cs
- MethodBuilderInstantiation.cs
- HtmlContainerControl.cs
- XmlSchemaAttribute.cs
- ToolStripDropTargetManager.cs
- ToggleButton.cs
- ReverseQueryOperator.cs
- BaseConfigurationRecord.cs
- WorkflowPrinting.cs
- PrinterSettings.cs
- Module.cs
- UriParserTemplates.cs
- DataGridViewSortCompareEventArgs.cs
- AttributeCallbackBuilder.cs
- SqlCommand.cs
- SafeNativeMethods.cs
- StringFormat.cs
- WebPageTraceListener.cs
- ObjectDataSourceFilteringEventArgs.cs
- CustomErrorCollection.cs
- SelectionListComponentEditor.cs
- TemplateControlParser.cs
- peernodeimplementation.cs
- ListViewGroupConverter.cs
- SignatureDescription.cs
- FamilyTypefaceCollection.cs
- View.cs
- baseaxisquery.cs
- Number.cs
- MeasurementDCInfo.cs