Server/Actions/ActionCecClose.cs
author StephaneLenclud
Thu, 18 Aug 2016 17:43:03 +0200
changeset 240 5c4f1e2bf29a
parent 228 6a84d8282226
child 253 2dae7a163fff
permissions -rw-r--r--
Adding empty class for eject optical drive action.
StephaneLenclud@214
     1
using CecSharp;
StephaneLenclud@214
     2
using SharpLib.Ear;
StephaneLenclud@214
     3
using System;
StephaneLenclud@214
     4
using System.Collections.Generic;
StephaneLenclud@214
     5
using System.Linq;
StephaneLenclud@214
     6
using System.Runtime.Serialization;
StephaneLenclud@214
     7
using System.Text;
StephaneLenclud@214
     8
using System.Threading.Tasks;
StephaneLenclud@214
     9
StephaneLenclud@214
    10
namespace SharpDisplayManager
StephaneLenclud@214
    11
{
StephaneLenclud@214
    12
    [DataContract]
StephaneLenclud@231
    13
    [AttributeObject(Id = "Cec.Close", Name = "CEC Close", Description = "Close CEC connection.")]
StephaneLenclud@214
    14
    class ActionCecClose : SharpLib.Ear.Action
StephaneLenclud@214
    15
    {
StephaneLenclud@228
    16
        protected override void DoExecute()
StephaneLenclud@214
    17
        {
StephaneLenclud@214
    18
            if (Cec.Client.Static == null)
StephaneLenclud@214
    19
            {
StephaneLenclud@214
    20
                Console.WriteLine("WARNING: No CEC client installed.");
StephaneLenclud@222
    21
                return;
StephaneLenclud@214
    22
            }
StephaneLenclud@214
    23
StephaneLenclud@214
    24
            Cec.Client.Static.Close();
StephaneLenclud@214
    25
        }
StephaneLenclud@214
    26
    }
StephaneLenclud@214
    27
}