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
- EmptyQuery.cs
- FileDialogCustomPlace.cs
- RectIndependentAnimationStorage.cs
- BmpBitmapEncoder.cs
- SmtpFailedRecipientsException.cs
- CachedPathData.cs
- CssTextWriter.cs
- DataControlFieldHeaderCell.cs
- DesignTimeParseData.cs
- CapabilitiesRule.cs
- GenericTextProperties.cs
- FontStretches.cs
- HttpHandler.cs
- SecurityUniqueId.cs
- VirtualDirectoryMappingCollection.cs
- HttpAsyncResult.cs
- TabOrder.cs
- WindowsFormsHostAutomationPeer.cs
- XXXOnTypeBuilderInstantiation.cs
- SingleObjectCollection.cs
- InstanceCreationEditor.cs
- StateMachineSubscriptionManager.cs
- LoginDesignerUtil.cs
- ImpersonateTokenRef.cs
- Vector3DKeyFrameCollection.cs
- PowerModeChangedEventArgs.cs
- DesignerAdapterUtil.cs
- ContentType.cs
- CodeArgumentReferenceExpression.cs
- RelOps.cs
- Inflater.cs
- MatrixValueSerializer.cs
- JsonReader.cs
- WindowsListViewGroupSubsetLink.cs
- EncryptedPackage.cs
- ContextDataSourceContextData.cs
- MetadataCache.cs
- IdentifierCollection.cs
- MessageLogger.cs
- SafeThreadHandle.cs
- Converter.cs
- EnumDataContract.cs
- IEnumerable.cs
- XsdDataContractImporter.cs
- WindowsComboBox.cs
- mansign.cs
- ChineseLunisolarCalendar.cs
- PropertyMappingExceptionEventArgs.cs
- EndpointInfo.cs
- ObjectSecurityT.cs
- HitTestParameters3D.cs
- PerspectiveCamera.cs
- SafeEventLogWriteHandle.cs
- RSAPKCS1SignatureDeformatter.cs
- IntersectQueryOperator.cs
- DbMetaDataFactory.cs
- DataRelationCollection.cs
- SponsorHelper.cs
- AnnotationHighlightLayer.cs
- CriticalExceptions.cs
- Content.cs
- CmsUtils.cs
- InstanceOwnerQueryResult.cs
- QilGenerator.cs
- ListViewContainer.cs
- ExpressionWriter.cs
- FilterFactory.cs
- TableRow.cs
- RuntimeEnvironment.cs
- AdornedElementPlaceholder.cs
- ADRoleFactoryConfiguration.cs
- CollectionViewSource.cs
- BitmapEffectDrawing.cs
- BindUriHelper.cs
- DockPanel.cs
- UniformGrid.cs
- DataList.cs
- MultiBinding.cs
- TransactionInformation.cs
- CreateSequenceResponse.cs
- Invariant.cs
- XmlNodeReader.cs
- TargetPerspective.cs
- XmlDataSourceNodeDescriptor.cs
- IndexedString.cs
- WmpBitmapEncoder.cs
- ManualResetEvent.cs
- SettingsPropertyValueCollection.cs
- TriggerAction.cs
- DefaultBinder.cs
- PopupEventArgs.cs
- OleDbRowUpdatedEvent.cs
- SiblingIterators.cs
- Baml2006ReaderFrame.cs
- FileNameEditor.cs
- UTF8Encoding.cs
- InfoCardSymmetricAlgorithm.cs
- InvokeGenerator.cs
- LOSFormatter.cs
- FormClosingEvent.cs