Server/Actions/ActionCecInactiveSource.cs
author StephaneLenclud
Sat, 13 Aug 2016 23:26:54 +0200
changeset 232 5a739e2e5255
parent 228 6a84d8282226
child 253 2dae7a163fff
permissions -rw-r--r--
Published v0.11.0.0.
     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.InactiveSource", Name = "CEC Inactive Source", Description = "Set this CEC device as inactive source.")]
    14     class ActionCecInactiveSource : 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.Lib.SetInactiveView();
    25         }
    26     }
    27 }