Ejemplo n.º 1
0
        public async Task Play(int frameRate)
        {
            var request = new PlayRequest();

            request.FrameRate = frameRate;

            await this.Post("api/play", request);
        }
Ejemplo n.º 2
0
        public async Task Play(string timeReferenceUrl, DateTime?playAt)
        {
            var request = new PlayRequest
            {
                TimeReferenceUrl = timeReferenceUrl,
                PlayAt           = playAt
            };

            await this.Post("api/play", request);
        }