public AlexaChannelController(IPremiseObject endpoint)
     : base(endpoint)
 {
     PropertyHelpers = new AlexaAV();
 }
 public AlexaChannelController(AlexaChannelControllerRequest request)
     : base(request)
 {
     PropertyHelpers = new AlexaAV();
 }
 public AlexaPlaybackController(AlexaPlaybackRequest request)
     : base(request)
 {
     PropertyHelpers = new AlexaAV();
 }
 public AlexaChannelController()
 {
     PropertyHelpers = new AlexaAV();
 }
 public AlexaPlaybackController()
 {
     PropertyHelpers = new AlexaAV();
 }
Example #6
0
 public AlexaSpeaker(AlexaSpeakerRequest request)
     : base(request)
 {
     PropertyHelpers = new AlexaAV();
 }
Example #7
0
 public AlexaSpeaker(IPremiseObject endpoint)
     : base(endpoint)
 {
     PropertyHelpers = new AlexaAV();
 }
Example #8
0
 public AlexaSpeaker()
 {
     PropertyHelpers = new AlexaAV();
 }
Example #9
0
        private readonly string[] _premiseProperties = { }; // proactive state updates not supported now

        #endregion Fields

        #region Constructors

        public AlexaInputController()
        {
            PropertyHelpers = new AlexaAV();
        }