TestFlow.Delay メソッド

定義

オーバーロード

名前 説明
Delay(TimeSpan)

会話に遅れが生じます。

Delay(UInt32)

会話に遅れが生じます。

Delay(TimeSpan)

会話に遅れが生じます。

public Microsoft.Bot.Builder.Adapters.TestFlow Delay(TimeSpan timespan);
member this.Delay : TimeSpan -> Microsoft.Bot.Builder.Adapters.TestFlow
Public Function Delay (timespan As TimeSpan) As TestFlow

パラメーター

timespan
TimeSpan

TimeSpanの遅延時間。

返品

モデル化された交換に遅延を付加する新しい TestFlow オブジェクト。

注釈

このメソッドは元の TestFlow オブジェクトを変更しません。

適用対象

Delay(UInt32)

会話に遅れが生じます。

public Microsoft.Bot.Builder.Adapters.TestFlow Delay(uint ms);
member this.Delay : uint32 -> Microsoft.Bot.Builder.Adapters.TestFlow
Public Function Delay (ms As UInteger) As TestFlow

パラメーター

ms
UInt32

遅延時間はミリ秒単位です。

返品

モデル化された交換に遅延を付加する新しい TestFlow オブジェクト。

注釈

このメソッドは元の TestFlow オブジェクトを変更しません。

適用対象