Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DesignerDataTable.cs / 1 / DesignerDataTable.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Data { using System; using System.Collections; ////// Represents a single table in a data connection. A collection of this /// type is returned from IDesignerDataSchema.GetSchemaItems when it is /// passed DesignerDataSchemaClass.Tables. /// public abstract class DesignerDataTable : DesignerDataTableBase { private ICollection _relationships; ////// protected DesignerDataTable(string name) : base(name) { } ////// protected DesignerDataTable(string name, string owner) : base(name, owner) { } ////// The collection of relationships in the table. /// public ICollection Relationships { get { if (_relationships == null) { _relationships = CreateRelationships(); } return _relationships; } } ////// This method will be called the first time the Relationships /// property is accessed. It should return a collection of /// DesignerDataRelationship objects representing this table's /// columns. /// protected abstract ICollection CreateRelationships(); } } // 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
- ItemAutomationPeer.cs
- DelegateOutArgument.cs
- QueryReaderSettings.cs
- AutoCompleteStringCollection.cs
- DynamicScriptObject.cs
- Models.cs
- FactoryGenerator.cs
- SynchronizationScope.cs
- AutomationProperty.cs
- StyleModeStack.cs
- _NtlmClient.cs
- TabControlCancelEvent.cs
- WebScriptEnablingElement.cs
- MenuItemBinding.cs
- SystemIPv6InterfaceProperties.cs
- SubqueryRules.cs
- HttpRequest.cs
- ContentIterators.cs
- SafeLibraryHandle.cs
- TrustExchangeException.cs
- MergeFilterQuery.cs
- EndPoint.cs
- HitTestResult.cs
- EnglishPluralizationService.cs
- ArrayElementGridEntry.cs
- HtmlButton.cs
- Mutex.cs
- EntityCommand.cs
- CultureInfo.cs
- SchemaInfo.cs
- TaiwanLunisolarCalendar.cs
- EntityClientCacheEntry.cs
- IndexerNameAttribute.cs
- UnsafeNativeMethods.cs
- CellTreeNode.cs
- QueryConverter.cs
- PolyLineSegmentFigureLogic.cs
- SequenceDesigner.xaml.cs
- XamlFrame.cs
- DBPropSet.cs
- CodeVariableDeclarationStatement.cs
- CategoryList.cs
- DataBoundControlDesigner.cs
- TextTreeDeleteContentUndoUnit.cs
- PolicyException.cs
- CultureInfoConverter.cs
- MatrixTransform3D.cs
- ResourceSet.cs
- StyleXamlParser.cs
- TextDecoration.cs
- SimpleFieldTemplateFactory.cs
- DataShape.cs
- ByteRangeDownloader.cs
- FileDataSourceCache.cs
- ByteAnimation.cs
- StyleTypedPropertyAttribute.cs
- BinaryObjectWriter.cs
- SoapEnumAttribute.cs
- ErrorStyle.cs
- TypeDescriptionProviderAttribute.cs
- IdentityManager.cs
- DeclarativeCatalogPart.cs
- SimpleRecyclingCache.cs
- NameValueConfigurationCollection.cs
- MailDefinition.cs
- EndPoint.cs
- PropertiesTab.cs
- AnnotationHighlightLayer.cs
- StagingAreaInputItem.cs
- TraceSection.cs
- OracleBinary.cs
- WebBrowserPermission.cs
- Delay.cs
- LogSwitch.cs
- DefaultMemberAttribute.cs
- SingleTagSectionHandler.cs
- FacetValueContainer.cs
- StaticResourceExtension.cs
- TreeNodeBinding.cs
- ScriptingSectionGroup.cs
- XPathScanner.cs
- SystemIcons.cs
- JumpPath.cs
- DataGridViewRowPostPaintEventArgs.cs
- PointAnimationClockResource.cs
- ConfigurationFileMap.cs
- ThreadStartException.cs
- MetadataSerializer.cs
- ValuePattern.cs
- ConnectionManagementElementCollection.cs
- SystemTcpStatistics.cs
- BeginEvent.cs
- SecurityTokenProvider.cs
- SearchForVirtualItemEventArgs.cs
- XmlSignatureProperties.cs
- LookupBindingPropertiesAttribute.cs
- SplayTreeNode.cs
- IArgumentProvider.cs
- XmlSchemaComplexContentRestriction.cs
- SessionState.cs