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
- ZipFileInfo.cs
- RuleSettings.cs
- ExitEventArgs.cs
- MessageBox.cs
- Vector3DAnimation.cs
- XmlResolver.cs
- ComponentCollection.cs
- HwndHost.cs
- WebPartCatalogCloseVerb.cs
- EntityDataSourceColumn.cs
- DataServiceKeyAttribute.cs
- BrowserCapabilitiesCodeGenerator.cs
- DefaultClaimSet.cs
- AnnotationAuthorChangedEventArgs.cs
- EventHandlerService.cs
- SQLCharsStorage.cs
- ConditionalAttribute.cs
- Point3DValueSerializer.cs
- PropertyItemInternal.cs
- EmptyEnumerator.cs
- InitializerFacet.cs
- SessionSwitchEventArgs.cs
- RandomNumberGenerator.cs
- _ListenerResponseStream.cs
- MonthChangedEventArgs.cs
- SQLUtility.cs
- ConfigurationElementProperty.cs
- WeakReferenceEnumerator.cs
- DynamicValueConverter.cs
- MethodAccessException.cs
- XmlProcessingInstruction.cs
- GAC.cs
- CSharpCodeProvider.cs
- XmlQualifiedNameTest.cs
- DbConnectionPoolCounters.cs
- DefaultPropertyAttribute.cs
- SqlBulkCopyColumnMappingCollection.cs
- OutputCacheSection.cs
- CodeDelegateInvokeExpression.cs
- KnownBoxes.cs
- CanonicalizationDriver.cs
- AssociationTypeEmitter.cs
- ClientScriptManager.cs
- TreeViewImageKeyConverter.cs
- TagMapCollection.cs
- Simplifier.cs
- QilGenerator.cs
- VirtualStackFrame.cs
- Focus.cs
- ValidationSummary.cs
- UpdateRecord.cs
- EventLogLink.cs
- DataConnectionHelper.cs
- XmlBinaryReader.cs
- PropertyConverter.cs
- ItemType.cs
- CompilationPass2TaskInternal.cs
- DbgUtil.cs
- ObfuscateAssemblyAttribute.cs
- ColorAnimationUsingKeyFrames.cs
- storagemappingitemcollection.viewdictionary.cs
- HelpPage.cs
- IBuiltInEvidence.cs
- SafeNativeMethods.cs
- EdgeProfileValidation.cs
- TwoPhaseCommit.cs
- XsdDataContractImporter.cs
- DataGridAddNewRow.cs
- SqlClientPermission.cs
- BasicHttpBindingElement.cs
- DocumentReferenceCollection.cs
- FrameworkContextData.cs
- QueryStringParameter.cs
- FileSecurity.cs
- util.cs
- HMACSHA1.cs
- BrowserTree.cs
- DoubleStorage.cs
- CustomErrorsSection.cs
- BaseValidator.cs
- PathFigureCollectionConverter.cs
- MimeTypeMapper.cs
- SocketException.cs
- TextPatternIdentifiers.cs
- ProbeDuplex11AsyncResult.cs
- StreamWithDictionary.cs
- InvalidAsynchronousStateException.cs
- SmtpFailedRecipientsException.cs
- DataControlPagerLinkButton.cs
- TailCallAnalyzer.cs
- BamlResourceContent.cs
- controlskin.cs
- BrushMappingModeValidation.cs
- BindingContext.cs
- Knowncolors.cs
- ClaimTypeElement.cs
- CompressionTracing.cs
- ProviderConnectionPoint.cs
- columnmapkeybuilder.cs
- DesignerEventService.cs