JsonObject.TryGetPropertyValue(String, JsonNode) 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.
Retourne la valeur d’une propriété portant le nom spécifié.
public:
bool TryGetPropertyValue(System::String ^ propertyName, [Runtime::InteropServices::Out] System::Text::Json::Nodes::JsonNode ^ % jsonNode);
public bool TryGetPropertyValue (string propertyName, out System.Text.Json.Nodes.JsonNode? jsonNode);
member this.TryGetPropertyValue : string * JsonNode -> bool
Public Function TryGetPropertyValue (propertyName As String, ByRef jsonNode As JsonNode) As Boolean
Paramètres
- propertyName
- String
Nom de la propriété à retourner.
- jsonNode
- JsonNode
Valeur JSON de la propriété avec le nom spécifié.
Retours
true
si une propriété portant le nom spécifié a été trouvée ; sinon, false
.