GraphPathSerializationDictionary.TryGetValue, méthode
Obtient la valeur associée à la clé spécifiée.
Espace de noms : Microsoft.VisualStudio.GraphModel
Assembly : Microsoft.VisualStudio.GraphModel (dans Microsoft.VisualStudio.GraphModel.dll)
Syntaxe
'Déclaration
Public Function TryGetValue ( _
key As String, _
<OutAttribute> ByRef value As String _
) As Boolean
public bool TryGetValue(
string key,
out string value
)
public:
virtual bool TryGetValue(
String^ key,
[OutAttribute] String^% value
) sealed
abstract TryGetValue :
key:string *
value:string byref -> bool
override TryGetValue :
key:string *
value:string byref -> bool
public final function TryGetValue(
key : String,
value : String
) : boolean
Paramètres
- key
Type : System.String
Clé dont la valeur doit être obtenue.
- value
Type : System.String%
Lorsque cette méthode est retournée, valeur associée à la clé spécifiée, si la clé est trouvée ; sinon, valeur par défaut du type du paramètre de valeur.Ce paramètre est passé sans être initialisé.
Valeur de retour
Type : System.Boolean
True si l'objet qui implémente System.Collections.Generic.IDictionary contient un élément contenant la clé spécifiée ; sinon, false.
Implémentations
IDictionary<TKey, TValue>.TryGetValue(TKey, TValue%)
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | key a la valeur null. |
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.