按照标题,附件和AttachmentData有什么区别?
我在https://github.com/Microsoft/BotBuilder-Samples/blob/master/CSharp/core-SendAttachment/SendAttachmentDialog.cs处看到了示例,尚不清楚何时应使用第一个或第二个。
最佳答案
AttachmentData
类基本上是使用连接器API将附件上载到通道时发送的模型。
在该示例的readme中,您将找到与附件相关的不同方案。
除非您是根据用户输入动态生成图像的,否则您无需走那条路。如果您已经有图像的URL,则可以使用它。
有关https://docs.microsoft.com/en-us/bot-framework/rest-api/bot-framework-rest-connector-api-reference#objects的更多信息
关于c# - Attachment和AttachmentData之间的区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48426469/