PersistentComponentState.TryTakeFromJson<TValue>(String, TValue) 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 de récupérer l’état persistant au format JSON avec le donné key
et le désérialise dans un instance de type TValue
.
Lorsque la clé est présente, l’état est correctement retourné via instance
et supprimé du PersistentComponentState.
public bool TryTakeFromJson<TValue> (string key, out TValue? instance);
member this.TryTakeFromJson : string * 'Value -> bool
Public Function TryTakeFromJson(Of TValue) (key As String, ByRef instance As TValue) As Boolean
Paramètres de type
- TValue
Paramètres
- key
- String
Clé utilisée pour conserver la instance.
- instance
- TValue
La instance persistante.
Retours
true
si l’état a été trouvé ; false
Sinon.