Compartir a través de


PromptStyler.Apply Método

Definición

Sobrecargas

Apply(IMessageActivity, String, String)

Aplicar estilo a un símbolo del sistema y rellenar .Text

Apply<T>(IMessageActivity, String, IReadOnlyList<T>, IReadOnlyList<String>, String)

Aplicar estilo a un símbolo del sistema y rellenar el mensaje en función de PromptStyle.

Apply<T>(IMessageActivity, String, IReadOnlyList<T>, PromptStyle, IReadOnlyList<String>, String)

Apply(IMessageActivity, String, String).

Apply(IMessageActivity, String, String)

Source:
PromptDialog.cs

Aplicar estilo a un símbolo del sistema y rellenar .Text

public virtual void Apply (ref Microsoft.Bot.Connector.IMessageActivity message, string prompt, string speak = default);
abstract member Apply : IMessageActivity * string * string -> unit
override this.Apply : IMessageActivity * string * string -> unit
Public Overridable Sub Apply (ByRef message As IMessageActivity, prompt As String, Optional speak As String = Nothing)

Parámetros

message
IMessageActivity

Mensaje que contendrá el mensaje.

prompt
String

El símbolo del sistema.

speak
String

El habla.

Se aplica a

Apply<T>(IMessageActivity, String, IReadOnlyList<T>, IReadOnlyList<String>, String)

Source:
PromptDialog.cs

Aplicar estilo a un símbolo del sistema y rellenar el mensaje en función de PromptStyle.

public virtual void Apply<T> (ref Microsoft.Bot.Connector.IMessageActivity message, string prompt, System.Collections.Generic.IReadOnlyList<T> options, System.Collections.Generic.IReadOnlyList<string> descriptions = default, string speak = default);
abstract member Apply : IMessageActivity * string * System.Collections.Generic.IReadOnlyList<'T> * System.Collections.Generic.IReadOnlyList<string> * string -> unit
override this.Apply : IMessageActivity * string * System.Collections.Generic.IReadOnlyList<'T> * System.Collections.Generic.IReadOnlyList<string> * string -> unit
Public Overridable Sub Apply(Of T) (ByRef message As IMessageActivity, prompt As String, options As IReadOnlyList(Of T), Optional descriptions As IReadOnlyList(Of String) = Nothing, Optional speak As String = Nothing)

Parámetros de tipo

T

Tipo de las opciones.

Parámetros

message
IMessageActivity

Mensaje que contendrá el mensaje.

prompt
String

El símbolo del sistema.

options
IReadOnlyList<T>

Opciones.

descriptions
IReadOnlyList<String>

Descripciones que se van a mostrar para cada opción.

speak
String

El habla.

Comentarios

T debe implementarse ToString() a menos que se proporcionen descripciones.

Se aplica a

Apply<T>(IMessageActivity, String, IReadOnlyList<T>, PromptStyle, IReadOnlyList<String>, String)

Source:
PromptDialog.cs
public static void Apply<T> (ref Microsoft.Bot.Connector.IMessageActivity message, string prompt, System.Collections.Generic.IReadOnlyList<T> options, Microsoft.Bot.Builder.Dialogs.PromptStyle promptStyle, System.Collections.Generic.IReadOnlyList<string> descriptions = default, string speak = default);
static member Apply : IMessageActivity * string * System.Collections.Generic.IReadOnlyList<'T> * Microsoft.Bot.Builder.Dialogs.PromptStyle * System.Collections.Generic.IReadOnlyList<string> * string -> unit
Public Shared Sub Apply(Of T) (ByRef message As IMessageActivity, prompt As String, options As IReadOnlyList(Of T), promptStyle As PromptStyle, Optional descriptions As IReadOnlyList(Of String) = Nothing, Optional speak As String = Nothing)

Parámetros de tipo

T

Tipo de las opciones.

Parámetros

message
IMessageActivity

Mensaje.

prompt
String

El símbolo del sistema.

options
IReadOnlyList<T>

Opciones.

promptStyle
PromptStyle

Estilo del símbolo del sistema.

descriptions
IReadOnlyList<String>

Descripciones de cada opción.

speak
String

El habla.

Se aplica a