Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- TCEAdapterGenerator.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ReadWriteSpinLock.cs
- ScrollBarAutomationPeer.cs
- GroupQuery.cs
- SecureEnvironment.cs
- MultiplexingDispatchMessageFormatter.cs
- FreeFormPanel.cs
- LocalFileSettingsProvider.cs
- ColorAnimationUsingKeyFrames.cs
- Stream.cs
- ErrorFormatterPage.cs
- EntityCommandCompilationException.cs
- TableLayoutColumnStyleCollection.cs
- PropertyEntry.cs
- HTTPNotFoundHandler.cs
- Point3D.cs
- BaseCollection.cs
- EndEvent.cs
- AppDomain.cs
- Literal.cs
- TextFragmentEngine.cs
- SqlServices.cs
- StreamGeometry.cs
- Activity.cs
- GridViewSelectEventArgs.cs
- DiscoveryClientChannelFactory.cs
- XamlToRtfParser.cs
- RoleGroupCollection.cs
- FrameworkTemplate.cs
- UserPreferenceChangingEventArgs.cs
- ResetableIterator.cs
- uribuilder.cs
- ReferenceEqualityComparer.cs
- WindowsRebar.cs
- SqlAliaser.cs
- GridErrorDlg.cs
- PackagePartCollection.cs
- SystemResources.cs
- ServicesExceptionNotHandledEventArgs.cs
- ItemList.cs
- DataGridViewHitTestInfo.cs
- HttpCacheVaryByContentEncodings.cs
- AppSettingsExpressionBuilder.cs
- ModelFunction.cs
- MediaPlayer.cs
- UpdatePanelTrigger.cs
- XmlSchemaComplexContent.cs
- ReachSerializer.cs
- ParseElementCollection.cs
- ServiceDescriptions.cs
- EasingKeyFrames.cs
- IntegrationExceptionEventArgs.cs
- QilLoop.cs
- SHA512.cs
- ComplexTypeEmitter.cs
- DatePickerTextBox.cs
- TrackBar.cs
- CheckableControlBaseAdapter.cs
- BrowserDefinitionCollection.cs
- SynchronizingStream.cs
- DbConnectionPool.cs
- XamlStackWriter.cs
- NumberFunctions.cs
- PrimitiveDataContract.cs
- JavascriptCallbackResponseProperty.cs
- XmlSchemaSimpleTypeUnion.cs
- ClientBuildManagerCallback.cs
- TreeViewImageKeyConverter.cs
- CompilationUnit.cs
- CheckedPointers.cs
- Attributes.cs
- EdmRelationshipRoleAttribute.cs
- OdbcTransaction.cs
- Vector3DValueSerializer.cs
- TextBlock.cs
- DynamicRouteExpression.cs
- DiffuseMaterial.cs
- TagPrefixInfo.cs
- TypeUnloadedException.cs
- WaitHandleCannotBeOpenedException.cs
- Focus.cs
- FormViewPageEventArgs.cs
- HMACSHA512.cs
- ReadOnlyCollectionBase.cs
- FastEncoder.cs
- TaiwanLunisolarCalendar.cs
- XdrBuilder.cs
- PrintPageEvent.cs
- AssemblyAttributes.cs
- UIElementIsland.cs
- SharedPersonalizationStateInfo.cs
- ObjectStateEntry.cs
- ByteStreamBufferedMessageData.cs
- InheritablePropertyChangeInfo.cs
- UIElementCollection.cs
- DefaultProfileManager.cs
- QuinticEase.cs
- MaterializeFromAtom.cs
- ClientData.cs