Common CustomDataSource
Common_CustomDataSource_CSharp\CustomDataSource_CSharp\TiledMapDataSource_CSharp\TileCacheInfo.cs
// Copyright 2007 ESRI
// 
// All rights reserved under the copyright laws of the United States
// and applicable international laws, treaties, and conventions.
// 
// You may freely redistribute and use this sample code, with or
// without modification, provided you include the original copyright
// notice and use restrictions.
// 
// See the use restrictions.
//

using System;
using System.Collections.Generic;
using System.Text;
using ESRI.ArcGIS.ADF.Web.DataSources;
using ESRI.ArcGIS.ADF.Web.Geometry;
namespace TiledMapDataSource_CSharp
{
    public class TileCacheInfo : ESRI.ArcGIS.ADF.Web.DataSources.TileCacheInfo
    {
        public TileCacheInfo(int width, int height, int dpi, Point origin, LodInfo[] lodInfos)
            : base(width, height, dpi, origin, lodInfos)
        { }
        public TileCacheInfo(ESRI.ArcGIS.ADF.Web.DataSources.TileCacheInfo tci)
            : base(tci.Width, tci.Height, tci.Dpi, tci.Origin, tci.LodInfos)
        { }
        internal System.Collections.Generic.Dictionary<int, int> Levels = new Dictionary<int, int>();
        internal System.Collections.Generic.Dictionary<int, string> TileUrls = new Dictionary<int, string>();
        internal System.Collections.Generic.Dictionary<string, string> Layers = new Dictionary<string, string>();
        internal string TileUrlGeneratorAssembly;
        internal string TileUrlGeneratorClass;
    }
}