Compartilhar via


Extensions.GetValueOrDefault<T>(IBotDataBag, String, T) Método

Definição

Obtém o valor associado à chave especificada ou a um valor padrão se não for encontrado.

public static T GetValueOrDefault<T> (this Microsoft.Bot.Builder.Dialogs.IBotDataBag bag, string key, T defaultValue = default);
static member GetValueOrDefault : Microsoft.Bot.Builder.Dialogs.IBotDataBag * string * 'T -> 'T
<Extension()>
Public Function GetValueOrDefault(Of T) (bag As IBotDataBag, key As String, Optional defaultValue As T = Nothing) As T

Parâmetros de tipo

T

O tipo do valor a ser obtido.

Parâmetros

bag
IBotDataBag

O pacote de dados do bot.

key
String

A chave do valor a ser obtido ou definido.

defaultValue
T

O valor a ser retornado se a chave não estiver presente

Retornos

T

O valor associado à chave especificada. Se a chave especificada não for encontrada, defaultValue será retornado

Aplica-se a