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
- AsyncCompletedEventArgs.cs
- OpenTypeMethods.cs
- StrongName.cs
- _CookieModule.cs
- HierarchicalDataBoundControlAdapter.cs
- ManualResetEventSlim.cs
- RayMeshGeometry3DHitTestResult.cs
- HighlightComponent.cs
- ExpressionPrefixAttribute.cs
- SafeProcessHandle.cs
- WorkBatch.cs
- StateBag.cs
- FormViewCommandEventArgs.cs
- WeakReference.cs
- ResolvedKeyFrameEntry.cs
- WindowsClaimSet.cs
- DetailsView.cs
- EventLogPermissionEntry.cs
- InstanceDataCollection.cs
- OleDbConnectionFactory.cs
- ToolStripOverflowButton.cs
- CellLabel.cs
- HttpStreamXmlDictionaryWriter.cs
- EditorPartCollection.cs
- CodeAttributeArgumentCollection.cs
- DesignerVerb.cs
- WebPartCancelEventArgs.cs
- control.ime.cs
- FormatterConverter.cs
- StatusStrip.cs
- HtmlTableRow.cs
- PrintingPermission.cs
- EntitySetRetriever.cs
- AsmxEndpointPickerExtension.cs
- UnmanagedMarshal.cs
- HandoffBehavior.cs
- HtmlToClrEventProxy.cs
- NotifyCollectionChangedEventArgs.cs
- IFormattable.cs
- QilFunction.cs
- Misc.cs
- Constraint.cs
- MasterPageParser.cs
- SystemResources.cs
- OdbcDataReader.cs
- DataListCommandEventArgs.cs
- FileDetails.cs
- dbdatarecord.cs
- IISMapPath.cs
- SemaphoreFullException.cs
- ObjectContextServiceProvider.cs
- NameValueConfigurationCollection.cs
- Size3DConverter.cs
- PropertyGridCommands.cs
- DataViewManagerListItemTypeDescriptor.cs
- AesManaged.cs
- NullableIntMinMaxAggregationOperator.cs
- DataSourceGroupCollection.cs
- DocumentPageTextView.cs
- InvalidOleVariantTypeException.cs
- _Events.cs
- XPathArrayIterator.cs
- CancellationToken.cs
- EntityDesignerBuildProvider.cs
- Msec.cs
- ResponseStream.cs
- WebPartRestoreVerb.cs
- MarkupWriter.cs
- ImageKeyConverter.cs
- WebServiceHandler.cs
- TreeNodeStyleCollection.cs
- InputScopeConverter.cs
- RealProxy.cs
- SystemWebCachingSectionGroup.cs
- FullTrustAssembliesSection.cs
- elementinformation.cs
- StreamReader.cs
- View.cs
- ComplexPropertyEntry.cs
- AliasedSlot.cs
- PeerContact.cs
- DataMemberAttribute.cs
- StaticFileHandler.cs
- BaseDataBoundControlDesigner.cs
- WindowsStatusBar.cs
- ListControl.cs
- XhtmlBasicLiteralTextAdapter.cs
- SizeAnimationBase.cs
- FormatException.cs
- TemplateBindingExpression.cs
- Schema.cs
- NavigationWindowAutomationPeer.cs
- SqlDependencyUtils.cs
- List.cs
- EmptyEnumerator.cs
- UnhandledExceptionEventArgs.cs
- OLEDB_Util.cs
- DataIdProcessor.cs
- TTSVoice.cs
- dsa.cs