Beispiel #1
0
 public TextIntent(IntentType intent, IntentTarget target = IntentTarget.None) : base(SourceType.Text, intent, target)
 {
 }
Beispiel #2
0
        private void AddIntentCommand(string command, UserIntent.IntentType intent, IntentTarget target = IntentTarget.None)
        {
            TextIntent textIntent = new TextIntent(intent, target);

            textIntentCache[command] = textIntent;
        }
Beispiel #3
0
 protected UserIntent(SourceType source, IntentType intent, IntentTarget target = IntentTarget.None)
 {
     Source = source;
     Intent = intent;
     Target = target;
 }