Adaptive cards - serving images in bytes
问题 I'm trying to put an image in Adaptive Card in Bot framework like this way: card.Body.Add(new AdaptiveImage() { Type = "Image", Url = new Uri(pictureUrl), Size = AdaptiveImageSize.Large }); It's working. The problem is with Url. I get images from the external web service in Base64 format. But sometimes I get too large image so I get The uri string is too long exception. Is there any way how to handle that problem? For example, enable putting the image in Adaptive card in bytes. 回答1: thanks