DesignerDataTableBase.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DesignerDataTableBase.cs / 1 / DesignerDataTableBase.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.ComponentModel.Design.Data { 
 
    using System;
    using System.Collections; 

    /// 
    /// Represents a base table in a data connection. DesignerDataTable and
    /// DesignerDataView derive from this class. 
    /// 
    public abstract class DesignerDataTableBase { 
 
        private ICollection _columns;
        private string _name; 
        private string _owner;

        /// 
        ///  
        protected DesignerDataTableBase(string name) {
            _name = name; 
        } 

        ///  
        /// 
        protected DesignerDataTableBase(string name, string owner) {
            _name = name;
            _owner = owner; 
        }
 
        ///  
        /// The collection of columns in the table.
        ///  
        public ICollection Columns {
            get {
                if (_columns == null) {
                    _columns = CreateColumns(); 
                }
                return _columns; 
            } 
        }
 
        /// 
        /// The name of the table.
        /// 
        public string Name { 
            get {
                return _name; 
            } 
        }
 
        /// 
        /// The owner of the table.
        /// 
        public string Owner { 
            get {
                return _owner; 
            } 
        }
 
        /// 
        /// This method will be called the first time the Columns property
        /// is accessed. It should return a collection of DesignerDataColumn
        /// objects representing this table's columns. 
        /// 
        protected abstract ICollection CreateColumns(); 
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK