Esempio n. 1
0
        /// <summary>
        /// Gets the step2.
        /// </summary>
        private static byte[] GetStep2()
        {
            var step2 = ApidazeScript.Build()
                        .AddNode(Speak.WithText("You will now be joined to an echo line."))
                        .AddNode(Echo.SetDuration(500))
                        .ToXml();

            return(Encoding.UTF8.GetBytes(step2));
        }