JsonElement.Clone Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a JsonElement that can be safely stored beyond the lifetime of the original JsonDocument.
public:
System::Text::Json::JsonElement Clone();
public System.Text.Json.JsonElement Clone ();
member this.Clone : unit -> System.Text.Json.JsonElement
Public Function Clone () As JsonElement
Returns
A JsonElement that can be safely stored beyond the lifetime of the original JsonDocument.
Remarks
If this JsonElement is itself the output of a previous call to Clone
or a value contained within another JsonElement that was the output of a previous call to Clone
, this method results in no additional memory allocation.