CachingPolicy.cs 1010 B

1234567891011121314151617181920212223242526272829303132
  1. namespace SMBLibrary.Server
  2. {
  3. /// <summary>
  4. /// Client-Side Caching Policy
  5. /// </summary>
  6. public enum CachingPolicy
  7. {
  8. /// <summary>
  9. /// The client can cache files that are explicitly selected by the user for offline use.
  10. /// Automatic file-by-file reintegration is not allowed.
  11. /// </summary>
  12. ManualCaching,
  13. /// <summary>
  14. /// The client can automatically cache files that are used by the user for offline access.
  15. /// Automatic file-by-file reintegration is allowed.
  16. /// </summary>
  17. AutoCaching,
  18. /// <summary>
  19. /// The client can automatically cache files that are used by the user for offline access.
  20. /// Clients are permitted to work from their local cache even while online.
  21. /// </summary>
  22. VideoCaching,
  23. /// <summary>
  24. /// No offline caching is allowed for this share.
  25. /// </summary>
  26. NoCaching,
  27. }
  28. }