Exemple #1
0
        protected ResponseBase HandleChitChat(ChitChatAct act)
        {
            var domain = act.Domain;

            if (domain == ChitChatDomain.Bye)
            {
                //ending dialog is actually not simple chit chat
                IsDialogClosed = true;
                return(new ByeAct());
            }

            return(new ChitChatAnswerAct(domain));
        }
Exemple #2
0
 public void Visit(ChitChatAct chitChat)
 {
     throw new NotImplementedException();
 }