Common CustomDataSource
Common_CustomDataSource_VBNet\CustomDataSource_VBNet\TiledMapDataSource_VBNet\TileCacheInfo.vb
' 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.
'


Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports ESRI.ArcGIS.ADF.Web.DataSources
Imports ESRI.ArcGIS.ADF.Web.Geometry
Namespace TiledMapDataSource_VBNet
  Public Class TileCacheInfo
    Inherits ESRI.ArcGIS.ADF.Web.DataSources.TileCacheInfo
    Public Sub New(ByVal width As Integer, ByVal height As Integer, ByVal dpi As Integer, ByVal origin As Point, ByVal lodInfos As LodInfo())
      MyBase.New(width, height, dpi, origin, lodInfos)
    End Sub
    Public Sub New(ByVal tci As ESRI.ArcGIS.ADF.Web.DataSources.TileCacheInfo)
      MyBase.New(tci.Width, tci.Height, tci.Dpi, tci.Origin, tci.LodInfos)
    End Sub
    Friend Levels As System.Collections.Generic.Dictionary(Of Integer, Integer) = New Dictionary(Of Integer, Integer)()
    Friend TileUrls As System.Collections.Generic.Dictionary(Of Integer, String) = New Dictionary(Of Integer, String)()
    Friend Layers As System.Collections.Generic.Dictionary(Of String, String) = New Dictionary(Of String, String)()
    Friend TileUrlGeneratorAssembly As String
    Friend TileUrlGeneratorClass As String
  End Class
End Namespace