JsonPatchDocument.Move(String, String) 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.
Supprime la valeur à l’emplacement spécifié et l’ajoute à l’emplacement cible. Entraîne, par exemple : { « op »: « move », « from »: « /a/b/c », « path »: « /a/b/d » }
public:
Microsoft::AspNetCore::JsonPatch::JsonPatchDocument ^ Move(System::String ^ from, System::String ^ path);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument Move (string from, string path);
member this.Move : string * string -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument
Public Function Move (from As String, path As String) As JsonPatchDocument
Paramètres
- from
- String
emplacement source
- path
- String
emplacement cible
Retours
JsonPatchDocument pour le chaînage.