You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ Samples are designed to illustrate scenarios you'll need to implement to build g
29
29
|8.suggested-actions | Demonstrates how to enable your bot to present buttons that the user can tap to provide input. |[View][cs#8]|[View][js#8]||||
30
30
|11.qnamaker | Demonstrates how to use QnA Maker to have simple single-turn conversations |[View][cs#11]|[View][js#11]||||
31
31
|13.core-bot | Core bot shows how to use cards, dialog, and Langugage Understanding (LUIS). |[View][cs#13]|[View][js#13]|[View][wa#13]||[View][ts#13]|
32
+
|13.core-bot.tests | Unit test project Core bot shows how to use use Bot Framework testing framework. |[View][cs#13.b]|||||
32
33
|14.nlp-with-dispatch | Demonstrates how to dispatch across LUIS and QnA Maker. |[View][cs#14]|[View][js#14]||||
33
34
|15.handling-attachments| Demonstrates how to listen for/handle user provided attachments. |[View][cs#15]|[View][js#15]||||
34
35
|16.proactive-messages | Demonstrates how to send proactive messages to users. |[View][cs#16]|[View][js#16]||||
@@ -42,6 +43,8 @@ Samples are designed to illustrate scenarios you'll need to implement to build g
42
43
|43.complex-dialog | Demonstrates different ways for composing dialogs. |[View][cs#43]|[View][js#43]||||
43
44
|44.prompt-for-user-input | Demonstrates how to implement your own _basic_ prompts to ask the user for information. |[View][cs#44]|[View][js#44]||||
44
45
|45.state-management | Demonstrates how to use state management and storage objects to manage and persist state. |[View][cs#45]|[View][js#45]||||
46
+
|46.teams-auth | Demonstrates how to use authentication for a bot running in Microsoft Teams. |[View][cs#46]|[View][js#46]||||
47
+
|47.inspection | Demonstrates how to use middleware to allow the Bot Framework Emulator to debug traffic into and out of the bot in addition to looking at the current state of the bot. |[View][cs#47]|[View][js#47]||||
45
48
|70.styling-webchat | This sample shows how to create a web page with custom Web Chat component.||||[View][es#70]||
46
49
47
50
[cs#1]:samples/csharp_dotnetcore/01.console-echo
@@ -53,6 +56,7 @@ Samples are designed to illustrate scenarios you'll need to implement to build g
Copy file name to clipboardExpand all lines: samples/csharp_dotnetcore/47.inspection/README.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,11 @@
1
-
# EchoBot
1
+
# Inspection Bot
2
2
3
3
Bot Framework v4 Inspection Middleware sample.
4
4
5
-
This bot demonstrates a feature called Inspection. This feature allows the bot emulator to debug traffic into and out of the bot in addition to
6
-
looking at the current state of the bot. This is done by having this data sent to the emulator using trace messages.
5
+
This bot demonstrates a feature called Inspection. This feature allows the Bot Framework Emulator to debug traffic into and out of the bot in addition to looking at the current state of the bot. This is done by having this data sent to the emulator using trace messages.
7
6
8
7
This bot has been created using [Bot Framework](https://dev.botframework.com), it shows how to create a simple bot that accepts input from the user and echoes it back.
9
-
Included in this echo are two counters maintained in User and Conversation state to demonstrate the ability to look at state.
8
+
Included in this sample are two counters maintained in User and Conversation state to demonstrate the ability to look at state.
10
9
11
10
This runtime behavior is achieved by simply adding a middleware to the bot. In this sample you can find that being done in the
12
11
AdapterWithInspection class.
@@ -30,7 +29,7 @@ More details are available [here](https://github.com/microsoft/BotFramework-Emul
0 commit comments