Server/Actions/ActionCecOpen.cs
author StephaneLenclud
Thu, 18 Aug 2016 17:13:21 +0200
changeset 239 dd7770b97916
parent 228 6a84d8282226
child 253 2dae7a163fff
permissions -rw-r--r--
Improved object editor dialog validation.
Added EAR support for object validation.
     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;
     9 
    10 namespace SharpDisplayManager
    11 {
    12     [DataContract]
    13     [AttributeObject(Id = "Cec.Open", Name = "CEC Open", Description = "Open CEC connection.")]
    14     class ActionCecOpen : 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             }
    23 
    24             Cec.Client.Static.Open(1000);
    25         }
    26     }
    27 }