/Main/src/DynamicDataDisplay.Maps/Servers/ITileServer.cs

# · C# · 19 lines · 16 code · 3 blank · 0 comment · 0 complexity · fadff02a2f05ab7524966193fa0f2983 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Microsoft.Research.DynamicDataDisplay.Maps.Servers;
  6. namespace Microsoft.Research.DynamicDataDisplay.Charts.Maps
  7. {
  8. public interface ITileServer
  9. {
  10. bool Contains(TileIndex id);
  11. void BeginLoadImage(TileIndex id);
  12. event EventHandler<TileLoadResultEventArgs> ImageLoaded;
  13. string ServerName { get; }
  14. event EventHandler Changed;
  15. }
  16. }