다음을 통해 공유


PromptStyler.Apply 메서드

정의

오버로드

Apply(IMessageActivity, String, String)

프롬프트의 스타일을 지정하고 을 Text채웁다.

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

프롬프트 스타일 지정 및 에 PromptStyle따라 메시지 채우기

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

Apply(IMessageActivity, String, String).

Apply(IMessageActivity, String, String)

Source:
PromptDialog.cs

프롬프트의 스타일을 지정하고 을 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)

매개 변수

message
IMessageActivity

프롬프트를 포함할 메시지입니다.

prompt
String

프롬프트입니다.

speak
String

말하기.

적용 대상

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

Source:
PromptDialog.cs

프롬프트 스타일 지정 및 에 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)

형식 매개 변수

T

옵션의 형식입니다.

매개 변수

message
IMessageActivity

프롬프트를 포함할 메시지입니다.

prompt
String

프롬프트입니다.

options
IReadOnlyList<T>

옵션입니다.

descriptions
IReadOnlyList<String>

각 옵션에 대해 표시할 설명입니다.

speak
String

말하기.

설명

T 설명이 제공되지 않는 한 를 구현 ToString() 해야 합니다.

적용 대상

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)

형식 매개 변수

T

옵션의 형식입니다.

매개 변수

message
IMessageActivity

메시지입니다.

prompt
String

프롬프트입니다.

options
IReadOnlyList<T>

옵션입니다.

promptStyle
PromptStyle

프롬프트 스타일입니다.

descriptions
IReadOnlyList<String>

각 옵션에 대한 설명입니다.

speak
String

말하기.

적용 대상