Exemplo n.º 1
0
 public void UpdateTags()
 {
     tagRanking = null; // will update on next get
 }
Exemplo n.º 2
0
 // 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;
 }