是否可以使用Microsoft Bot Framework Emulator v4向消息添加自定义调试日志?
我尝试了找到here的解决方案,这是Bot Framework V3的解决方案
var reply = activity.CreateReply("test");
string json = @"{
CustomField1: 'Field one value',
CustomField2Array: [
'First Element',
'Second Element'
]
}";
reply.ChannelData = JObject.Parse(json);
await context.PostAsync(reply);
但这不适用于Bot Framework V4中的对话框