Code:
/ DotNET / DotNET / 8.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
- RecipientIdentity.cs
- DrawingGroup.cs
- DataBindingHandlerAttribute.cs
- EventDrivenDesigner.cs
- FixedPage.cs
- WindowsTitleBar.cs
- ASCIIEncoding.cs
- Section.cs
- TextSpanModifier.cs
- WFItemsToSpacerVisibility.cs
- SiteMapSection.cs
- ContextMenu.cs
- CustomPopupPlacement.cs
- AssemblyUtil.cs
- SortableBindingList.cs
- GridEntryCollection.cs
- FunctionGenerator.cs
- FontStyleConverter.cs
- XmlSchemaGroup.cs
- ButtonFlatAdapter.cs
- StructuredTypeInfo.cs
- WorkflowPageSetupDialog.cs
- UnsafeNativeMethods.cs
- SafeSerializationManager.cs
- SqlInternalConnectionTds.cs
- AuthStoreRoleProvider.cs
- PeerTransportListenAddressConverter.cs
- FolderBrowserDialog.cs
- InstallHelper.cs
- ReadOnlyAttribute.cs
- CallId.cs
- WebPartTracker.cs
- GcHandle.cs
- GestureRecognizer.cs
- ToolStripEditorManager.cs
- XmlSchemaInferenceException.cs
- WebSysDisplayNameAttribute.cs
- DriveInfo.cs
- nulltextnavigator.cs
- ValidateNames.cs
- Switch.cs
- MimeWriter.cs
- NavigationWindowAutomationPeer.cs
- PrincipalPermissionMode.cs
- RSAOAEPKeyExchangeFormatter.cs
- ProcessModelInfo.cs
- ResXBuildProvider.cs
- CreateParams.cs
- BaseDataList.cs
- SQLResource.cs
- TextSearch.cs
- KeyNotFoundException.cs
- CompositeClientFormatter.cs
- DateTimeFormatInfoScanner.cs
- SafeThemeHandle.cs
- oledbconnectionstring.cs
- Hash.cs
- StyleCollection.cs
- BitVec.cs
- Path.cs
- SaveFileDialog.cs
- FlowLayout.cs
- TreeWalker.cs
- CfgParser.cs
- Vars.cs
- SelectedDatesCollection.cs
- InkPresenter.cs
- WebDescriptionAttribute.cs
- XmlSchemaSimpleTypeRestriction.cs
- Vector3DCollection.cs
- PropertyGridView.cs
- PathGeometry.cs
- XmlSchemaAnnotation.cs
- DataChangedEventManager.cs
- Tuple.cs
- Duration.cs
- DisposableCollectionWrapper.cs
- CroppedBitmap.cs
- Model3DCollection.cs
- ResXFileRef.cs
- ToolStripStatusLabel.cs
- BufferBuilder.cs
- EntityKey.cs
- DesignerSerializerAttribute.cs
- ZipIOExtraFieldZip64Element.cs
- XmlSchemaComplexContentExtension.cs
- RowToFieldTransformer.cs
- FileDialogCustomPlacesCollection.cs
- AxImporter.cs
- BatchParser.cs
- RegistryDataKey.cs
- RsaSecurityToken.cs
- FormatControl.cs
- WindowProviderWrapper.cs
- dsa.cs
- SyndicationSerializer.cs
- AutoResizedEvent.cs
- ToolStripTextBox.cs
- TextParentUndoUnit.cs
- RelatedPropertyManager.cs