BasicCard Constructors

Definition

Overloads

BasicCard()
BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)

BasicCard()

public BasicCard ();
Public Sub New ()

Applies to

BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)

public BasicCard (string title = default, string subtitle = default, string text = default, System.Collections.Generic.IList<Microsoft.Bot.Connector.CardImage> images = default, System.Collections.Generic.IList<Microsoft.Bot.Connector.CardAction> buttons = default, Microsoft.Bot.Connector.CardAction tap = default);
new Microsoft.Bot.Connector.BasicCard : string * string * string * System.Collections.Generic.IList<Microsoft.Bot.Connector.CardImage> * System.Collections.Generic.IList<Microsoft.Bot.Connector.CardAction> * Microsoft.Bot.Connector.CardAction -> Microsoft.Bot.Connector.BasicCard
Public Sub New (Optional title As String = Nothing, Optional subtitle As String = Nothing, Optional text As String = Nothing, Optional images As IList(Of CardImage) = Nothing, Optional buttons As IList(Of CardAction) = Nothing, Optional tap As CardAction = Nothing)

Parameters

title
String
subtitle
String
text
String
images
IList<CardImage>
buttons
IList<CardAction>

Applies to