public static Task SpeakAsync(this IBotToUser context, string text, string inputHint = null, string speak = null) { return(context.SayAsync(text, speak ?? text, inputHint != null ? new MessageOptions { InputHint = inputHint } : null)); }