QueryCacheEntry.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / QueryCache / QueryCacheEntry.cs / 1305376 / QueryCacheEntry.cs

                            //------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner  [....]
// @backupOwner [....] 
//----------------------------------------------------------------------------- 

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