5 writes to op
Microsoft.AspNetCore.JsonPatch (3)
JsonPatchDocument.cs (1)
210untypedOp.op = op.op;
JsonPatchDocumentOfT.cs (1)
646op = op.op,
Operations\OperationBase.cs (1)
58this.op = op;
Microsoft.AspNetCore.JsonPatch.Tests (2)
OperationBaseTests.cs (2)
21operationBase.op = op; 35operationBase.op = op;
11 references to op
Microsoft.AspNetCore.JsonPatch (6)
Adapters\ObjectAdapter.cs (2)
274errorMessage ?? Resources.FormatCannotPerformOperation(operation.op, path)); 282errorMessage ?? Resources.FormatTargetLocationNotFound(operation.op, path));
JsonPatchDocument.cs (1)
210untypedOp.op = op.op;
JsonPatchDocumentOfT.cs (1)
646op = op.op,
Operations\OperationBase.cs (1)
27[JsonProperty(nameof(op))]
Operations\OperationOfT.cs (1)
67Resources.FormatInvalidJsonPatchOperation(op), innerException: null);
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (5)
NewtonsoftJsonPatchInputFormatterTest.cs (5)
51Assert.Equal("add", patchDocument.Operations[0].op); 91Assert.Equal("add", patchDocument.Operations[0].op); 121Assert.Equal("add", patchDocument.Operations[0].op); 145Assert.Equal("add", patchDocument.Operations[0].op); 148Assert.Equal("remove", patchDocument.Operations[1].op);