namespace MediaBrowser.Controller.Providers { public enum ImageRefreshMode { /// /// The none /// None = 0, /// /// Existing images will be validated /// ValidationOnly = 1, /// /// The default /// Default = 2, /// /// All providers will be executed to search for new metadata /// FullRefresh = 3 } }