namespace SMBLibrary.Server
{
///
/// Client-Side Caching Policy
///
public enum CachingPolicy
{
///
/// The client can cache files that are explicitly selected by the user for offline use.
/// Automatic file-by-file reintegration is not allowed.
///
ManualCaching,
///
/// The client can automatically cache files that are used by the user for offline access.
/// Automatic file-by-file reintegration is allowed.
///
AutoCaching,
///
/// The client can automatically cache files that are used by the user for offline access.
/// Clients are permitted to work from their local cache even while online.
///
VideoCaching,
///
/// No offline caching is allowed for this share.
///
NoCaching,
}
}