BasicCard Constructors
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| BasicCard() |
Initialiseert een nieuw exemplaar van de BasicCard klasse. |
| BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction) |
Initialiseert een nieuw exemplaar van de BasicCard klasse. |
BasicCard()
Initialiseert een nieuw exemplaar van de BasicCard klasse.
public BasicCard();
Public Sub New ()
Van toepassing op
BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)
Initialiseert een nieuw exemplaar van de BasicCard klasse.
public BasicCard(string title = default, string subtitle = default, string text = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardImage> images = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> buttons = default, Microsoft.Bot.Schema.CardAction tap = default);
new Microsoft.Bot.Schema.BasicCard : string * string * string * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardImage> * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> * Microsoft.Bot.Schema.CardAction -> Microsoft.Bot.Schema.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
Titel van de kaart.
- subtitle
- String
Ondertitel van de kaart.
- text
- String
Tekst voor de kaart.
- buttons
- IList<CardAction>
Set acties die van toepassing zijn op de huidige kaart.
- tap
- CardAction
Deze actie wordt geactiveerd wanneer de gebruiker op de kaart zelf tikt.