JsonPatchDocument.AppendAddRaw(String, String) Method

Definition

Appends an "add" operation to this JsonPatchDocument.

public void AppendAddRaw (string path, string rawJsonValue);
member this.AppendAddRaw : string * string -> unit
Public Sub AppendAddRaw (path As String, rawJsonValue As String)

Parameters

path
String

The path to apply the addition to.

rawJsonValue
String

The raw JSON value to add to the path.

Applies to