Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / ComponentCollection.cs / 1 / 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); } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebScriptServiceHostFactory.cs
- PerformanceCounter.cs
- MaterializeFromAtom.cs
- DataRowComparer.cs
- GridSplitter.cs
- EastAsianLunisolarCalendar.cs
- SizeLimitedCache.cs
- MarkupCompilePass2.cs
- EntityDataSourceSelectingEventArgs.cs
- ChangeProcessor.cs
- SuppressMessageAttribute.cs
- UInt16Storage.cs
- FileLogRecordStream.cs
- XMLSchema.cs
- DefaultAuthorizationContext.cs
- EdmType.cs
- LongMinMaxAggregationOperator.cs
- XmlChildNodes.cs
- WebServiceMethodData.cs
- OracleRowUpdatedEventArgs.cs
- CookieParameter.cs
- JsonServiceDocumentSerializer.cs
- TextParagraph.cs
- Hex.cs
- StringBlob.cs
- LayoutUtils.cs
- WindowsToolbarItemAsMenuItem.cs
- StrongNameUtility.cs
- CompilationPass2TaskInternal.cs
- CodeTryCatchFinallyStatement.cs
- DataRecordInternal.cs
- ellipse.cs
- MgmtResManager.cs
- DataFormat.cs
- PropertyPathWorker.cs
- CuspData.cs
- PathTooLongException.cs
- EventsTab.cs
- ObjectConverter.cs
- TileBrush.cs
- XmlSerializerSection.cs
- ListViewTableCell.cs
- DataGridViewRowCollection.cs
- TableCell.cs
- TraceContextEventArgs.cs
- SystemColors.cs
- processwaithandle.cs
- AnonymousIdentificationModule.cs
- ProfileInfo.cs
- LogWriteRestartAreaState.cs
- PermissionRequestEvidence.cs
- AppSettingsReader.cs
- CacheForPrimitiveTypes.cs
- MsmqTransportSecurityElement.cs
- RelationshipEntry.cs
- EnumerableRowCollectionExtensions.cs
- RubberbandSelector.cs
- ProcessThread.cs
- StrokeCollection.cs
- AssemblyEvidenceFactory.cs
- Point4D.cs
- AttributeUsageAttribute.cs
- CustomErrorCollection.cs
- XPathDocumentIterator.cs
- X509RecipientCertificateClientElement.cs
- WindowsRichEditRange.cs
- SourceFilter.cs
- RegionInfo.cs
- TextPenaltyModule.cs
- RenderData.cs
- CodeStatement.cs
- DispatcherTimer.cs
- TemplatePropertyEntry.cs
- followingsibling.cs
- XmlSchemaSimpleContent.cs
- PropertyManager.cs
- XmlSchemaComplexContentExtension.cs
- SafeRightsManagementPubHandle.cs
- MergablePropertyAttribute.cs
- CacheRequest.cs
- UInt32Storage.cs
- XMLUtil.cs
- DefaultHttpHandler.cs
- WebPartsPersonalizationAuthorization.cs
- BuildDependencySet.cs
- DeclaredTypeElementCollection.cs
- Metadata.cs
- Message.cs
- SynchronizingStream.cs
- DataAdapter.cs
- UpDownBaseDesigner.cs
- FileChangesMonitor.cs
- SqlDataReader.cs
- OperatorExpressions.cs
- SystemInfo.cs
- ScrollableControl.cs
- XmlKeywords.cs
- DashStyle.cs
- GridErrorDlg.cs
- FileDataSourceCache.cs