Example #1
0
 public override void OnGrab(GrabMessage grabMessage)
 {
     _growlService.SendNotification(EPISODE_GRABBED_TITLE, grabMessage.Message, "GRAB", Settings.Host, Settings.Port, Settings.Password);
 }
Example #2
0
        public override void OnGrab(string message)
        {
            const string title = "Episode Grabbed";

            _growlService.SendNotification(title, message, "GRAB", Settings.Host, Settings.Port, Settings.Password);
        }
Example #3
0
        public override void OnGrab(GrabMessage grabMessage)
        {
            const string title = "Movie Grabbed";

            _growlService.SendNotification(title, grabMessage.Message, "GRAB", Settings.Host, Settings.Port, Settings.Password);
        }