Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DataSourceGroupCollection.cs / 1 / DataSourceGroupCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Data { using System; using System.Collections; ////// /// Type safe collection of DataSourceGroup objects. /// public class DataSourceGroupCollection : CollectionBase { ////// /// public DataSourceGroupCollection() : base() { } ////// /// public int Add(DataSourceGroup value) { return List.Add(value); } ////// /// public int IndexOf(DataSourceGroup value) { return List.IndexOf(value); } ////// /// public void Insert(int index, DataSourceGroup value) { List.Insert(index, value); } ////// /// public bool Contains(DataSourceGroup value) { return List.Contains(value); } ////// /// public void CopyTo(DataSourceGroup[] array, int index) { List.CopyTo(array, index); } ////// /// public void Remove(DataSourceGroup value) { List.Remove(value); } ////// /// public DataSourceGroup this[int index] { get { return (DataSourceGroup) 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
- FileAuthorizationModule.cs
- SQLGuid.cs
- DataGridViewCellConverter.cs
- keycontainerpermission.cs
- WebPartPersonalization.cs
- AliasedSlot.cs
- TypedTableBase.cs
- GridViewRowEventArgs.cs
- SoapElementAttribute.cs
- QualifiedCellIdBoolean.cs
- KnownTypeAttribute.cs
- Rect3DValueSerializer.cs
- ManagedFilter.cs
- SymbolUsageManager.cs
- ButtonRenderer.cs
- RoleGroupCollection.cs
- RtType.cs
- BitmapCache.cs
- QueryBranchOp.cs
- WebPartActionVerb.cs
- CurrencyManager.cs
- Message.cs
- AssemblyResolver.cs
- TextTreeUndo.cs
- DataGridViewTopLeftHeaderCell.cs
- DynamicEndpoint.cs
- HttpResponseWrapper.cs
- DocumentViewerConstants.cs
- ContainerControl.cs
- SharedStatics.cs
- WindowsTreeView.cs
- WindowsNonControl.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- QueryServiceConfigHandle.cs
- DocumentPageTextView.cs
- ProviderConnectionPoint.cs
- DataError.cs
- XmlRootAttribute.cs
- EdmSchemaAttribute.cs
- StrongNameUtility.cs
- DateTimeConstantAttribute.cs
- HwndSourceParameters.cs
- _LocalDataStore.cs
- PieceNameHelper.cs
- SplineQuaternionKeyFrame.cs
- ImportRequest.cs
- PrimaryKeyTypeConverter.cs
- SafeRegistryHandle.cs
- PropVariant.cs
- TcpChannelListener.cs
- XmlKeywords.cs
- NameScopePropertyAttribute.cs
- ToolConsole.cs
- PackWebResponse.cs
- ServiceSettingsResponseInfo.cs
- RegisteredExpandoAttribute.cs
- DataView.cs
- HttpWebResponse.cs
- UDPClient.cs
- CodeDomSerializerException.cs
- SystemNetHelpers.cs
- FormParameter.cs
- ConfigurationStrings.cs
- ChtmlCommandAdapter.cs
- AssemblyResourceLoader.cs
- TemplateBuilder.cs
- Int16AnimationBase.cs
- TopClause.cs
- ScrollChrome.cs
- LocalizedNameDescriptionPair.cs
- XamlReader.cs
- TypeDescriptionProvider.cs
- SettingsPropertyIsReadOnlyException.cs
- WorkflowApplicationCompletedException.cs
- SemaphoreFullException.cs
- HideDisabledControlAdapter.cs
- GridViewRowCollection.cs
- ProfileManager.cs
- AnimationLayer.cs
- _NestedMultipleAsyncResult.cs
- CqlLexer.cs
- StateRuntime.cs
- CodeAttributeArgumentCollection.cs
- Calendar.cs
- XmlSchemas.cs
- CurrencyWrapper.cs
- ClientScriptManager.cs
- ListDesigner.cs
- PolicyUtility.cs
- CodeAttributeArgumentCollection.cs
- Vector3D.cs
- HwndMouseInputProvider.cs
- TextWriter.cs
- LogStore.cs
- EditingMode.cs
- SqlDataAdapter.cs
- LinkButton.cs
- Formatter.cs
- SafeRightsManagementSessionHandle.cs
- RepeatInfo.cs