author | StephaneLenclud |
Wed, 28 Sep 2016 22:31:27 +0200 | |
changeset 269 | 8e32e51a2edd |
parent 253 | 2dae7a163fff |
permissions | -rw-r--r-- |
1 using CecSharp;
2 using SharpLib.Ear;
3 using System;
4 using System.Collections.Generic;
5 using System.Diagnostics;
6 using System.Linq;
7 using System.Runtime.Serialization;
8 using System.Text;
9 using System.Threading.Tasks;
11 namespace SharpDisplayManager
12 {
13 [DataContract]
14 [AttributeObject(Id = "Cec.Close", Name = "CEC Close", Description = "Close CEC connection.")]
15 class ActionCecClose : SharpLib.Ear.Action
16 {
17 protected override async Task DoExecute()
18 {
19 if (Cec.Client.Static == null)
20 {
21 Trace.WriteLine("WARNING: No CEC client installed.");
22 return;
23 }
25 Cec.Client.Static.Close();
26 }
27 }
28 }