Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PropertyGridEditorPart.cs
- IdentityNotMappedException.cs
- WebPartExportVerb.cs
- SrgsElementList.cs
- ExceptionUtil.cs
- CollectionView.cs
- Oid.cs
- VisualBrush.cs
- InvalidCommandTreeException.cs
- OptionUsage.cs
- SerialReceived.cs
- Root.cs
- ParseChildrenAsPropertiesAttribute.cs
- XamlTypeMapper.cs
- StringSource.cs
- InfoCardX509Validator.cs
- BooleanToVisibilityConverter.cs
- XmlSchemaDocumentation.cs
- RectKeyFrameCollection.cs
- MissingFieldException.cs
- TextSchema.cs
- DataBinder.cs
- EncryptedPackage.cs
- WmlPageAdapter.cs
- StaticTextPointer.cs
- RangeContentEnumerator.cs
- AnimationLayer.cs
- SettingsPropertyNotFoundException.cs
- FrugalList.cs
- SqlConnectionString.cs
- SchemaElementLookUpTable.cs
- CodeConditionStatement.cs
- JapaneseLunisolarCalendar.cs
- XamlDesignerSerializationManager.cs
- SecurityManager.cs
- ReachUIElementCollectionSerializer.cs
- FontNamesConverter.cs
- CompilerState.cs
- PagesSection.cs
- BindingCompleteEventArgs.cs
- CqlQuery.cs
- ResXFileRef.cs
- input.cs
- InternalEnumValidatorAttribute.cs
- Query.cs
- MetaForeignKeyColumn.cs
- OdbcCommand.cs
- CoreChannel.cs
- PackageFilter.cs
- DataGridViewCellValueEventArgs.cs
- NotSupportedException.cs
- DecimalConverter.cs
- ListCollectionView.cs
- AutomationPatternInfo.cs
- Point4D.cs
- MemberMaps.cs
- OleDbException.cs
- UpdatePanelControlTrigger.cs
- RequestResizeEvent.cs
- UrlAuthFailureHandler.cs
- TdsParserHelperClasses.cs
- HostProtectionPermission.cs
- DataKey.cs
- PerfCounters.cs
- CodeParameterDeclarationExpressionCollection.cs
- HMACSHA384.cs
- HtmlElement.cs
- CalendarDateRangeChangingEventArgs.cs
- AdapterDictionary.cs
- MetadataHelper.cs
- ExpressionStringBuilder.cs
- IsolatedStorageException.cs
- WebAdminConfigurationHelper.cs
- ToolBarButton.cs
- ImageListStreamer.cs
- OleDbCommand.cs
- TableRowCollection.cs
- RemotingAttributes.cs
- FixedLineResult.cs
- Dictionary.cs
- WebZoneDesigner.cs
- DispatcherFrame.cs
- CroppedBitmap.cs
- OracleCommandSet.cs
- ResourceSet.cs
- CodeSubDirectoriesCollection.cs
- UrlPath.cs
- TextTreeText.cs
- WinInet.cs
- ToolStripDropDownClosingEventArgs.cs
- ResourceContainer.cs
- ResourceAssociationTypeEnd.cs
- NamespaceImport.cs
- DataServiceRequestOfT.cs
- ObjectQueryState.cs
- TrackingProfileDeserializationException.cs
- DeobfuscatingStream.cs
- ApplicationContext.cs
- MessageBox.cs
- EntityTypeEmitter.cs