Utf8JsonReader.GetInt32 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.
Lit la prochaine valeur du jeton JSON de la source et l’analyse pour obtenir une valeur Int32.
public:
int GetInt32();
public int GetInt32 ();
member this.GetInt32 : unit -> int
Public Function GetInt32 () As Integer
Retours
Valeur du jeton encodé en UTF-8 analysée pour obtenir une valeur Int32.
Exceptions
La valeur du jeton JSON n’est pas un Number.
La valeur du jeton JSON est dans un format numérique incorrect. Par exemple, elle contient un nombre décimal ou est écrite en notation scientifique.
- ou -
La valeur du jeton JSON représente un nombre inférieur à Int32.MinValue ou supérieur à Int32.MaxValue.