public void UpdateTags() { tagRanking = null; // will update on next get }
// Updates the above properties with current information from the associated plugin. // See abstract GrabFileDetails() method below. public bool Update() { try { bool result = GrabFileDetails(); tagRanking = new TagRank(MediaDetail); if (!result) logger.Error("Failed updating {0} [{1}]", PluginName, ID); return result; } catch (Exception e) { logger.ErrorException(string.Format("Failed updating {0} [{1}]{2}", PluginName, ID, Environment.NewLine), e); } return false; }