LinqDataSourceContextData.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / ui / webcontrols / LinqDataSourceContextData.cs / 2 / LinqDataSourceContextData.cs

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

namespace System.Web.UI.WebControls { 
 
    internal class LinqDataSourceContextData {
 
        private object _context;
        private bool _isNewContext;
        private object _table;
 
        public LinqDataSourceContextData() {
        } 
 
        public LinqDataSourceContextData(object context) {
            _context = context; 
        }

        public object Context {
            get { 
                return _context;
            } 
            set { 
                _context = value;
            } 
        }

        public bool IsNewContext {
            get { 
                return _isNewContext;
            } 
            set { 
                _isNewContext = value;
            } 
        }

        public object Table {
            get { 
                return _table;
            } 
            set { 
                _table = value;
            } 
        }

    }
} 


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

namespace System.Web.UI.WebControls { 
 
    internal class LinqDataSourceContextData {
 
        private object _context;
        private bool _isNewContext;
        private object _table;
 
        public LinqDataSourceContextData() {
        } 
 
        public LinqDataSourceContextData(object context) {
            _context = context; 
        }

        public object Context {
            get { 
                return _context;
            } 
            set { 
                _context = value;
            } 
        }

        public bool IsNewContext {
            get { 
                return _isNewContext;
            } 
            set { 
                _isNewContext = value;
            } 
        }

        public object Table {
            get { 
                return _table;
            } 
            set { 
                _table = value;
            } 
        }

    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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