Subversion Repositories Projects

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed


namespace GMap.NET
{
   /// <summary>
   /// tile access mode
   /// </summary>
   public enum AccessMode
   {
      /// <summary>
      /// access only server
      /// </summary>
      ServerOnly,

      /// <summary>
      /// access first server and caches localy
      /// </summary>
      ServerAndCache,

      /// <summary>
      /// access only cache
      /// </summary>
      CacheOnly,
   }
}