QueryCacheEntry.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 / DataEntity / System / Data / Common / QueryCache / QueryCacheEntry.cs / 1 / QueryCacheEntry.cs

                            //------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....], [....]
//----------------------------------------------------------------------------- 
 
namespace System.Data.Common.QueryCache
{ 
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Data.Common; 
    using System.Diagnostics;
 
    ///  
    /// Represents the abstract base class for all cache entry values in the query cache
    ///  
    internal abstract class QueryCacheEntry
    {
        #region Fields
        ///  
        /// querycachekey for this entry
        ///  
        readonly private QueryCacheKey _queryCacheKey; 

        ///  
        /// strong reference to the target object
        /// 
        readonly protected object _target;
        #endregion 

        #region Constructors 
        ///  
        /// cache entry constructor
        ///  
        /// 
        /// 
        protected QueryCacheEntry( QueryCacheKey queryCacheKey, object target )
        { 
            _queryCacheKey = queryCacheKey;
            _target = target; 
        } 
        #endregion
 
        #region Methods and Properties
        /// 
        /// returns the target dbcommand as strong type
        ///  
        /// 
        internal virtual object GetTarget() 
        { 
            return _target;
        } 

        /// 
        /// Returns the query cache key
        ///  
        internal QueryCacheKey QueryCacheKey
        { 
            get { return _queryCacheKey; } 
        }
        #endregion 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....], [....]
//----------------------------------------------------------------------------- 
 
namespace System.Data.Common.QueryCache
{ 
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Data.Common; 
    using System.Diagnostics;
 
    ///  
    /// Represents the abstract base class for all cache entry values in the query cache
    ///  
    internal abstract class QueryCacheEntry
    {
        #region Fields
        ///  
        /// querycachekey for this entry
        ///  
        readonly private QueryCacheKey _queryCacheKey; 

        ///  
        /// strong reference to the target object
        /// 
        readonly protected object _target;
        #endregion 

        #region Constructors 
        ///  
        /// cache entry constructor
        ///  
        /// 
        /// 
        protected QueryCacheEntry( QueryCacheKey queryCacheKey, object target )
        { 
            _queryCacheKey = queryCacheKey;
            _target = target; 
        } 
        #endregion
 
        #region Methods and Properties
        /// 
        /// returns the target dbcommand as strong type
        ///  
        /// 
        internal virtual object GetTarget() 
        { 
            return _target;
        } 

        /// 
        /// Returns the query cache key
        ///  
        internal QueryCacheKey QueryCacheKey
        { 
            get { return _queryCacheKey; } 
        }
        #endregion 
    }
}

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