Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / ComponentCollection.cs / 1305376 / ComponentCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //// This class was generated by a tool. // Runtime Version: 1.0.2204.0 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //----------------------------------------------------------------------------- using System.Diagnostics.CodeAnalysis; /* This class has the HostProtectionAttribute. The purpose of this attribute is to enforce host-specific programming model guidelines, not security behavior. Suppress FxCop message - BUT REVISIT IF ADDING NEW SECURITY ATTRIBUTES. */ [assembly: SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands", Scope="member", Target="System.ComponentModel.ComponentCollection..ctor(System.ComponentModel.IComponent[])")] [assembly: SuppressMessage("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands", Scope="member", Target="System.ComponentModel.ComponentCollection.get_Item(System.String):System.ComponentModel.IComponent")] namespace System.ComponentModel { using System; using System.Collections; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; /** The component in the container identified by name. */ ////// [System.Runtime.InteropServices.ComVisible(true)] [HostProtection(Synchronization=true)] public class ComponentCollection : ReadOnlyCollectionBase { ////// Gets a specific ///in the /// . /// /// public ComponentCollection(IComponent[] components) { InnerList.AddRange(components); } /** The component in the container identified by name. */ ///[To be supplied.] ////// public virtual IComponent this[string name] { get { if (name != null) { IList list = InnerList; foreach(IComponent comp in list) { if (comp != null && comp.Site != null && comp.Site.Name != null && string.Equals(comp.Site.Name, name, StringComparison.OrdinalIgnoreCase)) { return comp; } } } return null; } } /** The component in the container identified by index. */ ////// Gets a specific ///in the /// . /// /// public virtual IComponent this[int index] { get { return (IComponent)InnerList[index]; } } ////// Gets a specific ///in the /// . /// /// public void CopyTo(IComponent[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CharStorage.cs
- DebugView.cs
- BaseDataBoundControl.cs
- FontStyles.cs
- ObfuscationAttribute.cs
- OdbcErrorCollection.cs
- PrivilegedConfigurationManager.cs
- HijriCalendar.cs
- LockCookie.cs
- UnaryExpression.cs
- SecuritySessionClientSettings.cs
- securestring.cs
- IdleTimeoutMonitor.cs
- Point3DConverter.cs
- FixedSOMPageElement.cs
- XamlWriterExtensions.cs
- DataSourceXmlSerializer.cs
- XmlReader.cs
- RequiredAttributeAttribute.cs
- DataFieldConverter.cs
- XPathCompileException.cs
- WebEventTraceProvider.cs
- unitconverter.cs
- AuthorizationRule.cs
- ColumnMap.cs
- InputElement.cs
- InteropExecutor.cs
- CodeLinePragma.cs
- SqlDependencyUtils.cs
- SiteMapDataSourceView.cs
- ServerValidateEventArgs.cs
- GetWinFXPath.cs
- TreeNode.cs
- AuthenticationService.cs
- TableCell.cs
- WebReferencesBuildProvider.cs
- Debug.cs
- ExpressionEvaluator.cs
- BrowserCapabilitiesFactory.cs
- WorkflowCreationContext.cs
- SessionStateContainer.cs
- XmlSchemaCompilationSettings.cs
- OleDbDataReader.cs
- CallSiteHelpers.cs
- WebPartVerb.cs
- ThreadAbortException.cs
- RuntimeConfigLKG.cs
- FieldToken.cs
- PolygonHotSpot.cs
- DataBoundLiteralControl.cs
- MsmqBindingElementBase.cs
- Vector3dCollection.cs
- DataGridViewLayoutData.cs
- DeadCharTextComposition.cs
- HopperCache.cs
- SymLanguageVendor.cs
- OpenFileDialog.cs
- BindingListCollectionView.cs
- CodeDelegateInvokeExpression.cs
- _SslState.cs
- BitmapEffectGroup.cs
- ProxyWebPartConnectionCollection.cs
- Match.cs
- SqlRewriteScalarSubqueries.cs
- FileChangesMonitor.cs
- FragmentNavigationEventArgs.cs
- SmiSettersStream.cs
- XmlSchemaGroupRef.cs
- DocumentGridPage.cs
- HttpProfileGroupBase.cs
- XmlSerializationReader.cs
- Int16AnimationBase.cs
- SoapExtensionImporter.cs
- TimeBoundedCache.cs
- InstallerTypeAttribute.cs
- BoolExpression.cs
- FixedSOMTableCell.cs
- CounterSetInstance.cs
- HttpCapabilitiesBase.cs
- ContentElementAutomationPeer.cs
- GridItem.cs
- XmlElementCollection.cs
- BuildManager.cs
- XmlHelper.cs
- WebPartHeaderCloseVerb.cs
- BooleanExpr.cs
- AttachedPropertyBrowsableAttribute.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- FontFamilyIdentifier.cs
- IsolatedStorageFilePermission.cs
- ExpressionBinding.cs
- StringDictionary.cs
- ConfigurationManagerInternal.cs
- MessagePropertyDescription.cs
- SoapSchemaImporter.cs
- UserControl.cs
- COM2EnumConverter.cs
- CacheVirtualItemsEvent.cs
- DeploymentSectionCache.cs
- GridViewDeletedEventArgs.cs