BasicCard Конструкторы
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
BasicCard() |
Инициализирует новый экземпляр класса BasicCard. |
BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction) |
Инициализирует новый экземпляр класса BasicCard. |
BasicCard()
Инициализирует новый экземпляр класса BasicCard.
public BasicCard ();
Public Sub New ()
Применяется к
BasicCard(String, String, String, IList<CardImage>, IList<CardAction>, CardAction)
Инициализирует новый экземпляр класса BasicCard.
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)
Параметры
- title
- String
Заголовок карты.
- subtitle
- String
Подзаголовок карточки.
- text
- String
Текст для карточки.
- buttons
- IList<CardAction>
Набор действий, применимых к текущей карточке.
- tap
- CardAction
Это действие будет активировано, когда пользователь касается самой карточки.