Пример #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SessionCache"/> class.
        /// </summary>
        /// <param name="tracker">The tracker that will be used to store the created service instances</param>
        public SessionCache(IHttpReferenceTracker tracker)
        {
            if (tracker == null)
                throw new ArgumentNullException("tracker");

            _tracker = tracker;
        }
Пример #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SessionCache"/> class.
        /// </summary>
        /// <param name="tracker">The tracker that will be used to store the created service instances</param>
        public SessionCache(IHttpReferenceTracker tracker)
        {
            if (tracker == null)
            {
                throw new ArgumentNullException("tracker");
            }

            _tracker = tracker;
        }