Exemplo n.º 1
0
        public void Skip(int seconds)
        {
            if (reader == null || output == null)
            {
                return;
            }

            if (output.PlaybackState != PlaybackState.Stopped)
            {
                reader.Skip(seconds);
            }
        }