author | StephaneLenclud |
Fri, 19 Aug 2016 19:18:54 +0200 | |
changeset 244 | 2e4d2558bb21 |
parent 228 | 6a84d8282226 |
child 253 | 2dae7a163fff |
permissions | -rw-r--r-- |
1 using CecSharp;
2 using SharpLib.Ear;
3 using System;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Runtime.Serialization;
7 using System.Text;
8 using System.Threading.Tasks;
10 namespace SharpDisplayManager
11 {
12 [DataContract]
13 [AttributeObject(Id = "Cec.Close", Name = "CEC Close", Description = "Close CEC connection.")]
14 class ActionCecClose : SharpLib.Ear.Action
15 {
16 protected override void DoExecute()
17 {
18 if (Cec.Client.Static == null)
19 {
20 Console.WriteLine("WARNING: No CEC client installed.");
21 return;
22 }
24 Cec.Client.Static.Close();
25 }
26 }
27 }