Utf8JsonReader.TryGetInt32(Int32) 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.
Tente d’analyser la valeur du jeton JSON actuelle de la source en tant que Int32 et retourne une valeur qui indique si l’opération a réussi.
public:
bool TryGetInt32([Runtime::InteropServices::Out] int % value);
public bool TryGetInt32 (out int value);
member this.TryGetInt32 : int -> bool
Public Function TryGetInt32 (ByRef value As Integer) As Boolean
Paramètres
- value
- Int32
Lorsque cette méthode est retournée, contient la valeur entière 32 bits équivalente au numéro JSON actuel si la conversion a réussi ou 0 si la conversion a échoué.
Retours
true
si la valeur du jeton encodé en UTF-8 toute entière peut être analysée correctement pour obtenir une valeur Int32 ; sinon, false
.
Exceptions
La valeur du jeton JSON n’est pas un Number.