AtomicComposition.TryGetValue Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur enregistrée par la méthode SetValue(Object, Object).
Surcharges
TryGetValue<T>(Object, T) |
Obtient une valeur enregistrée par la méthode SetValue(Object, Object). |
TryGetValue<T>(Object, Boolean, T) |
Obtient une valeur enregistrée par la méthode SetValue(Object, Object), avec la possibilité de ne pas rechercher de transactions parent. |
TryGetValue<T>(Object, T)
- Source:
- AtomicComposition.cs
- Source:
- AtomicComposition.cs
- Source:
- AtomicComposition.cs
Obtient une valeur enregistrée par la méthode SetValue(Object, Object).
public:
generic <typename T>
bool TryGetValue(System::Object ^ key, [Runtime::InteropServices::Out] T % value);
public bool TryGetValue<T> (object key, out T value);
member this.TryGetValue : obj * 'T -> bool
Public Function TryGetValue(Of T) (key As Object, ByRef value As T) As Boolean
Paramètres de type
- T
Type de la valeur à récupérer.
Paramètres
- key
- Object
Clé à partir de laquelle récupérer.
- value
- T
Valeur récupérée.
Retours
true
si la valeur a été correctement récupérée ; sinon, false
.
S’applique à
TryGetValue<T>(Object, Boolean, T)
- Source:
- AtomicComposition.cs
- Source:
- AtomicComposition.cs
- Source:
- AtomicComposition.cs
Obtient une valeur enregistrée par la méthode SetValue(Object, Object), avec la possibilité de ne pas rechercher de transactions parent.
public:
generic <typename T>
bool TryGetValue(System::Object ^ key, bool localAtomicCompositionOnly, [Runtime::InteropServices::Out] T % value);
public bool TryGetValue<T> (object key, bool localAtomicCompositionOnly, out T value);
member this.TryGetValue : obj * bool * 'T -> bool
Public Function TryGetValue(Of T) (key As Object, localAtomicCompositionOnly As Boolean, ByRef value As T) As Boolean
Paramètres de type
- T
Type de la valeur à récupérer.
Paramètres
- key
- Object
Clé à partir de laquelle récupérer.
- localAtomicCompositionOnly
- Boolean
true
pour exclure des transactions parent ; sinon, false
.
- value
- T
Valeur récupérée.
Retours
true
si la valeur a été correctement récupérée ; sinon, false
.