Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2287 - 1

2
namespace GMap.NET
3
{
4
   /// <summary>
5
   /// tile access mode
6
   /// </summary>
7
   public enum AccessMode
8
   {
9
      /// <summary>
10
      /// access only server
11
      /// </summary>
12
      ServerOnly,
13
 
14
      /// <summary>
15
      /// access first server and caches localy
16
      /// </summary>
17
      ServerAndCache,
18
 
19
      /// <summary>
20
      /// access only cache
21
      /// </summary>
22
      CacheOnly,
23
   }
24
}