ContextDataSource.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / ContextDataSource.cs / 1305376 / ContextDataSource.cs

                            #if ORYX_VNEXT 
namespace Microsoft.Web.Data.UI.WebControls {
    using System.Web;
    using System.Web.UI;
#else 
namespace System.Web.UI.WebControls {
#endif 
    using System; 
    using System.Collections.Generic;
    using System.ComponentModel; 
    using System.Text;

    public abstract class ContextDataSource : QueryableDataSource {
        private ContextDataSourceView _view; 

        internal ContextDataSource(IPage page) 
            : base(page) { 

        } 

        internal ContextDataSource(ContextDataSourceView view)
            : base(view) {
        } 

        protected ContextDataSource() { 
        } 

        private ContextDataSourceView View { 
            get {
                if (_view == null) {
                    _view = (ContextDataSourceView)GetView("DefaultView");
                } 
                return _view;
            } 
        } 

        public virtual string ContextTypeName { 
            get {
                return View.ContextTypeName;
            }
            set { 
                View.ContextTypeName = value;
            } 
        } 

        protected string EntitySetName { 
            get {
                return View.EntitySetName;
            }
            set { 
                View.EntitySetName = value;
            } 
        } 

        public virtual string EntityTypeName { 
            get {
                return View.EntityTypeName;
            }
            set { 
                View.EntityTypeName = value;
            } 
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
#if ORYX_VNEXT 
namespace Microsoft.Web.Data.UI.WebControls {
    using System.Web;
    using System.Web.UI;
#else 
namespace System.Web.UI.WebControls {
#endif 
    using System; 
    using System.Collections.Generic;
    using System.ComponentModel; 
    using System.Text;

    public abstract class ContextDataSource : QueryableDataSource {
        private ContextDataSourceView _view; 

        internal ContextDataSource(IPage page) 
            : base(page) { 

        } 

        internal ContextDataSource(ContextDataSourceView view)
            : base(view) {
        } 

        protected ContextDataSource() { 
        } 

        private ContextDataSourceView View { 
            get {
                if (_view == null) {
                    _view = (ContextDataSourceView)GetView("DefaultView");
                } 
                return _view;
            } 
        } 

        public virtual string ContextTypeName { 
            get {
                return View.ContextTypeName;
            }
            set { 
                View.ContextTypeName = value;
            } 
        } 

        protected string EntitySetName { 
            get {
                return View.EntitySetName;
            }
            set { 
                View.EntitySetName = value;
            } 
        } 

        public virtual string EntityTypeName { 
            get {
                return View.EntityTypeName;
            }
            set { 
                View.EntityTypeName = value;
            } 
        } 
    }
} 

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