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 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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
- RecipientServiceModelSecurityTokenRequirement.cs
- SerTrace.cs
- WeakEventTable.cs
- Collection.cs
- SchemaElementDecl.cs
- NumericPagerField.cs
- UserControlParser.cs
- InkCanvasFeedbackAdorner.cs
- SQLChars.cs
- EmissiveMaterial.cs
- _NetRes.cs
- EventMap.cs
- x509store.cs
- Cloud.cs
- FlowLayoutPanel.cs
- QuerySetOp.cs
- OleDbCommand.cs
- DesignerCapabilities.cs
- ConfigXmlDocument.cs
- SQLInt32.cs
- DisplayInformation.cs
- Localizer.cs
- XhtmlBasicPhoneCallAdapter.cs
- InkCanvasSelectionAdorner.cs
- SizeValueSerializer.cs
- FontFamily.cs
- CalendarAutoFormat.cs
- ConfigXmlWhitespace.cs
- WebPartManager.cs
- RequestTimeoutManager.cs
- ModuleConfigurationInfo.cs
- FlowThrottle.cs
- X509ChainElement.cs
- EventMappingSettings.cs
- XmlSubtreeReader.cs
- PeerApplication.cs
- EntityModelBuildProvider.cs
- ProgressChangedEventArgs.cs
- EventRouteFactory.cs
- ValueSerializerAttribute.cs
- MonthChangedEventArgs.cs
- Rect3DValueSerializer.cs
- Drawing.cs
- GeneralTransform3D.cs
- DecoderNLS.cs
- BigInt.cs
- DictionaryEntry.cs
- GridViewRowEventArgs.cs
- BinaryConverter.cs
- TrackBar.cs
- StringWriter.cs
- PasswordTextNavigator.cs
- ConvertEvent.cs
- DataGridItem.cs
- BooleanAnimationUsingKeyFrames.cs
- ContractComponent.cs
- SubqueryRules.cs
- EntityStoreSchemaGenerator.cs
- Container.cs
- SecurityKeyIdentifier.cs
- RemoteWebConfigurationHost.cs
- Region.cs
- _ListenerResponseStream.cs
- ModelPropertyDescriptor.cs
- Positioning.cs
- HashMembershipCondition.cs
- TypedColumnHandler.cs
- NonClientArea.cs
- CodeIdentifiers.cs
- TreeNodeBinding.cs
- HtmlInputText.cs
- SqlDataSourceView.cs
- Table.cs
- CodePropertyReferenceExpression.cs
- activationcontext.cs
- ZipIOModeEnforcingStream.cs
- TypeUnloadedException.cs
- UpdateEventArgs.cs
- httpstaticobjectscollection.cs
- HighContrastHelper.cs
- ExpressionBindingCollection.cs
- MailBnfHelper.cs
- UrlAuthorizationModule.cs
- Brushes.cs
- TextEvent.cs
- mil_commands.cs
- List.cs
- NestPullup.cs
- WCFModelStrings.Designer.cs
- StrongName.cs
- ExceptionHandlerDesigner.cs
- WorkItem.cs
- XmlNodeComparer.cs
- MachineKeySection.cs
- LogEntryHeaderSerializer.cs
- TextServicesCompartment.cs
- HttpPostProtocolImporter.cs
- XmlRootAttribute.cs
- XmlUtf8RawTextWriter.cs
- Camera.cs