Share via


Operation Constructors

Definition

Overloads

Operation()

Source:
Operation.cs
public Operation();
Public Sub New ()

Applies to

Operation(String, String, String)

Source:
Operation.cs
public Operation(string op, string path, string from);
new Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation : string * string * string -> Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation
Public Sub New (op As String, path As String, from As String)

Parameters

op
String
path
String
from
String

Applies to

Operation(String, String, String, Object)

Source:
Operation.cs
public Operation(string op, string path, string from, object value);
new Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation : string * string * string * obj -> Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation
Public Sub New (op As String, path As String, from As String, value As Object)

Parameters

op
String
path
String
from
String
value
Object

Applies to