From dbcb4c19ef913b2a439b6187cd5cbf467f148dd9 Mon Sep 17 00:00:00 2001 From: FlorianDahn Date: Sun, 20 May 2018 00:45:25 +0200 Subject: [PATCH] RM --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index cf70537..654d6bd 100644 --- a/README.md +++ b/README.md @@ -125,11 +125,13 @@ public class SimpleForm : FormBase case "hello": case "hi": + //Send him a simple message await this.Device.Send("Hello you there !"); break; case "maybe": + //Send him a simple message and reply to the one of himself await this.Device.Send("Maybe what?", replyTo: messageId); break; @@ -137,6 +139,7 @@ public class SimpleForm : FormBase case "bye": case "ciao": + //Send him a simple message await this.Device.Send("Ok, take care !"); break; }