SigninCard Constructors

Definition

Overloads

SigninCard()

Initializes a new instance of the SigninCard class.

SigninCard(String, IList<CardAction>)

Initializes a new instance of the SigninCard class.

SigninCard()

Initializes a new instance of the SigninCard class.

public SigninCard ();
Public Sub New ()

Applies to

SigninCard(String, IList<CardAction>)

Initializes a new instance of the SigninCard class.

public SigninCard (string text = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> buttons = default);
new Microsoft.Bot.Schema.SigninCard : string * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> -> Microsoft.Bot.Schema.SigninCard
Public Sub New (Optional text As String = Nothing, Optional buttons As IList(Of CardAction) = Nothing)

Parameters

text
String

Text for signin request.

buttons
IList<CardAction>

Action to use to perform signin.

Applies to