Created
October 31, 2017 18:32
-
-
Save nwhitmont/f445961d451169a5fa35607ac7263d55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static Attachment GetHeroCard() | |
{ | |
var heroCard = new HeroCard | |
{ | |
Title = "BotFramework Hero Card", | |
Subtitle = "Your bots — wherever your users are talking", | |
Text = "Build and connect intelligent bots to interact with your users naturally wherever they are, from text/sms to Skype, Slack, Office 365 mail and other popular services.", | |
Images = new List<CardImage> { new CardImage("http://chart.apis.google.com/chart?chs=200x200&chdlp=b&chtt=Uberman&chdl=Asleep%7CAw&chd=t:11,11,11,11,11,11,11,11,11,11,11,11&cht=p&chco=586F8E,red,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F") }, | |
Buttons = new List<CardAction> { new CardAction(ActionTypes.OpenUrl, "Get Started", value: "https://docs.microsoft.com/bot-framework") } | |
}; | |
return heroCard.ToAttachment(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment