DesignerHierarchicalDataSourceView.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 / WebForms / System / Web / UI / Design / DesignerHierarchicalDataSourceView.cs / 1 / DesignerHierarchicalDataSourceView.cs

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

namespace System.Web.UI.Design { 
 
    using System.Collections;
    using System.ComponentModel; 
    using System.ComponentModel.Design;
    using System.Design;

    public abstract class DesignerHierarchicalDataSourceView { 

        private string _path; 
        private IHierarchicalDataSourceDesigner _owner; 

        protected DesignerHierarchicalDataSourceView(IHierarchicalDataSourceDesigner owner, string viewPath) { 
            if (owner == null) {
                throw new ArgumentNullException("owner");
            }
            if (viewPath == null) { 
                throw new ArgumentNullException("viewPath");
            } 
 
            _owner = owner;
            _path = viewPath; 
        }


        public IHierarchicalDataSourceDesigner DataSourceDesigner { 
            get {
                return _owner; 
            } 
        }
 
        public string Path {
            get {
                return _path;
            } 
        }
 
        ///  
        /// 
        public virtual IDataSourceSchema Schema { 
            get {
                return null;
            }
        } 

 
        ///  
        /// Provides a design-time version of the hierarchical data source. This method
        /// will attempt to create sample data that matches the schema of the data source, 
        /// though it might not necessarily match.
        /// 
        public virtual IHierarchicalEnumerable GetDesignTimeData(out bool isSampleData) {
            isSampleData = true; 
            //
 
            return null; 
        }
    } 
}


// 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