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
- TextComposition.cs
- HotSpotCollectionEditor.cs
- LabelDesigner.cs
- HideDisabledControlAdapter.cs
- XmlHelper.cs
- M3DUtil.cs
- XmlSchemaInclude.cs
- ExpressionVisitorHelpers.cs
- WsdlImporterElementCollection.cs
- ViewGenerator.cs
- MsmqBindingFilter.cs
- DataBindingCollection.cs
- DbConnectionPoolOptions.cs
- PeerNameRecordCollection.cs
- CompiledIdentityConstraint.cs
- Win32MouseDevice.cs
- DPAPIProtectedConfigurationProvider.cs
- Ops.cs
- DataRelation.cs
- InstancePersistenceContext.cs
- LocatorBase.cs
- PropertyDescriptorCollection.cs
- ForAllOperator.cs
- Simplifier.cs
- Stylus.cs
- ScrollData.cs
- PtsHelper.cs
- DbParameterCollection.cs
- Solver.cs
- ChangeBlockUndoRecord.cs
- CategoryValueConverter.cs
- RequestCachePolicyConverter.cs
- CodeExpressionStatement.cs
- MsmqIntegrationSecurity.cs
- VisualStyleElement.cs
- XmlIlVisitor.cs
- FrameworkContentElement.cs
- CodeAttributeDeclarationCollection.cs
- LogEntryHeaderDeserializer.cs
- DataServiceQueryOfT.cs
- BufferBuilder.cs
- XhtmlBasicObjectListAdapter.cs
- RowSpanVector.cs
- ProfilePropertySettingsCollection.cs
- StaticSiteMapProvider.cs
- documentsequencetextpointer.cs
- StringCollectionMarkupSerializer.cs
- DataRecordInternal.cs
- InplaceBitmapMetadataWriter.cs
- odbcmetadatacollectionnames.cs
- MDIControlStrip.cs
- COM2PictureConverter.cs
- SystemThemeKey.cs
- SiteMapNode.cs
- ExtendedProtectionPolicy.cs
- MemoryStream.cs
- ViewStateModeByIdAttribute.cs
- ActiveXHelper.cs
- ApplicationSettingsBase.cs
- OutputChannel.cs
- PageTrueTypeFont.cs
- QueryMath.cs
- GetTokenRequest.cs
- SymbolUsageManager.cs
- DetailsViewRow.cs
- CompiledQuery.cs
- RootBrowserWindowAutomationPeer.cs
- WindowsFormsHost.cs
- QueryAsyncResult.cs
- Transform.cs
- ChameleonKey.cs
- ObjectDataSourceSelectingEventArgs.cs
- WindowsImpersonationContext.cs
- PersonalizationStateInfoCollection.cs
- x509utils.cs
- MethodBuilder.cs
- OciHandle.cs
- HtmlInputText.cs
- JavaScriptString.cs
- XmlNullResolver.cs
- ToolStripDropDownClosingEventArgs.cs
- SqlTypesSchemaImporter.cs
- SqlConnectionPoolGroupProviderInfo.cs
- ConnectionsZone.cs
- IIS7UserPrincipal.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- SqlStatistics.cs
- ProfileEventArgs.cs
- CommonProperties.cs
- TabControl.cs
- Rect.cs
- ServiceInstanceProvider.cs
- RowToFieldTransformer.cs
- TransactionFlowElement.cs
- AssemblyHash.cs
- DeclarationUpdate.cs
- EntityContainerEmitter.cs
- Select.cs
- Rect3D.cs
- DataServiceContext.cs