Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DataSourceDescriptorCollection.cs / 1 / DataSourceDescriptorCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Data { using System; using System.Collections; ////// /// Type safe collection of DataSourceDescriptor objects. /// public class DataSourceDescriptorCollection : CollectionBase { ////// /// public DataSourceDescriptorCollection() : base() { } ////// /// public int Add(DataSourceDescriptor value) { return List.Add(value); } ////// /// public int IndexOf(DataSourceDescriptor value) { return List.IndexOf(value); } ////// /// public void Insert(int index, DataSourceDescriptor value) { List.Insert(index, value); } ////// /// public bool Contains(DataSourceDescriptor value) { return List.Contains(value); } ////// /// public void CopyTo(DataSourceDescriptor[] array, int index) { List.CopyTo(array, index); } ////// /// public void Remove(DataSourceDescriptor value) { List.Remove(value); } ////// /// public DataSourceDescriptor this[int index] { get { return (DataSourceDescriptor) List[index]; } set { List[index] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeDirectiveCollection.cs
- DataGridCellsPresenter.cs
- OleDbParameter.cs
- XmlUtf8RawTextWriter.cs
- PersonalizationProviderCollection.cs
- XmlSchemaSimpleTypeUnion.cs
- SortQuery.cs
- ControlHelper.cs
- ArrayList.cs
- UserControlCodeDomTreeGenerator.cs
- TimeStampChecker.cs
- StringResourceManager.cs
- SoapSchemaExporter.cs
- NavigationEventArgs.cs
- XmlFormatExtensionPrefixAttribute.cs
- TypedDataSetSchemaImporterExtension.cs
- XmlSchemaComplexContent.cs
- Aggregates.cs
- PointCollectionValueSerializer.cs
- SystemPens.cs
- DataGridViewCellStyleConverter.cs
- AccessText.cs
- Function.cs
- FilterQuery.cs
- Triplet.cs
- DataGridViewAccessibleObject.cs
- Delegate.cs
- PopupEventArgs.cs
- CodeBlockBuilder.cs
- shaperfactory.cs
- EntityDataSourceWizardForm.cs
- DrawingAttributeSerializer.cs
- Visitors.cs
- ChangeBlockUndoRecord.cs
- ObjectItemAssemblyLoader.cs
- WSHttpBindingBaseElement.cs
- ObjectStateFormatter.cs
- ContentPropertyAttribute.cs
- LinkLabelLinkClickedEvent.cs
- ACE.cs
- PtsContext.cs
- GacUtil.cs
- Message.cs
- OwnerDrawPropertyBag.cs
- ObjectDataSourceSelectingEventArgs.cs
- BitmapEffectDrawing.cs
- UnionCqlBlock.cs
- AdjustableArrowCap.cs
- mda.cs
- SelectionPattern.cs
- DataTemplateSelector.cs
- DetailsViewPagerRow.cs
- PasswordBoxAutomationPeer.cs
- DependencyPropertyAttribute.cs
- ObjectQueryProvider.cs
- HwndMouseInputProvider.cs
- XamlBrushSerializer.cs
- SqlRetyper.cs
- HandleCollector.cs
- ConfigDefinitionUpdates.cs
- FrameDimension.cs
- GroupDescription.cs
- ExtractedStateEntry.cs
- BufferedStream.cs
- SelectedGridItemChangedEvent.cs
- WebPartActionVerb.cs
- IconConverter.cs
- XmlILCommand.cs
- ObjectItemCachedAssemblyLoader.cs
- EntityProxyTypeInfo.cs
- PerformanceCounterCategory.cs
- Int16.cs
- TdsParser.cs
- JapaneseLunisolarCalendar.cs
- HybridDictionary.cs
- GroupByQueryOperator.cs
- OdbcCommand.cs
- Switch.cs
- CheckBoxField.cs
- MDIControlStrip.cs
- ScrollItemProviderWrapper.cs
- PointLight.cs
- WebUtil.cs
- CodeEventReferenceExpression.cs
- XmlSchemaImporter.cs
- WS2007HttpBindingCollectionElement.cs
- StylusEventArgs.cs
- EntityDesignerUtils.cs
- SerializationInfoEnumerator.cs
- TableCellCollection.cs
- OpenTypeCommon.cs
- ProjectedWrapper.cs
- MetadataUtil.cs
- SwitchElementsCollection.cs
- CollectionContainer.cs
- WorkflowServiceBehavior.cs
- StateValidator.cs
- ShaderEffect.cs
- ZoneButton.cs
- QilPatternVisitor.cs