Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

ShowNodeJsScorable.cs 759 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  1. namespace TestBot.Scorables
  2. {
  3. using Microsoft.Bot.Builder.Dialogs.Internals;
  4. public class ShowNodeJsScorable : ShowPrivateDataScorable
  5. {
  6. public ShowNodeJsScorable(IBotToUser botToUser, IBotData botData) : base(botToUser, botData)
  7. {
  8. }
  9. public override string DataKey
  10. {
  11. get
  12. {
  13. return Constants.LastNodeJsKey;
  14. }
  15. }
  16. public override string NotAvailableMessage
  17. {
  18. get
  19. {
  20. return "Sorry, Node code not available!";
  21. }
  22. }
  23. public override string Trigger
  24. {
  25. get
  26. {
  27. return Constants.NodeJsTrigger;
  28. }
  29. }
  30. }
  31. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...