Common CustomDataSource
Common_CustomDataSource_CSharp\CustomDataSource_CSharp\TiledMapDataSource_CSharp\ITileUrlGenerator.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;

namespace TiledMapDataSource_CSharp
{
    public interface ITileUrlGenerator
    {
        string GetTileUrl(long column, long row, int level, string defaultUrl, Dictionary<string, bool> layerVisibility);
    }
}