Partager via


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

Définition

Obtient la valeur associée à la clé spécifiée ou une valeur par défaut si elle est introuvable.

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

Paramètres de type

T

Type de la valeur à obtenir.

Paramètres

bag
IBotDataBag

Le conteneur de données du bot.

key
String

Clé de la valeur à obtenir ou à définir.

defaultValue
T

Valeur à retourner si la clé n’est pas présente

Retours

T

Valeur associée à la clé spécifiée. Si la clé spécifiée est introuvable, defaultValue est retourné

S’applique à