Share via


JsonPatchDocument<TModel> Constructors

Definition

Overloads

JsonPatchDocument<TModel>()

Source:
JsonPatchDocumentOfT.cs
public JsonPatchDocument();
Public Sub New ()

Applies to

JsonPatchDocument<TModel>(List<Operation<TModel>>, JsonSerializerOptions)

Source:
JsonPatchDocumentOfT.cs
public JsonPatchDocument(System.Collections.Generic.List<Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation<TModel>> operations, System.Text.Json.JsonSerializerOptions serializerOptions);
new Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument<'Model (requires 'Model : null)> : System.Collections.Generic.List<Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations.Operation<'Model>> * System.Text.Json.JsonSerializerOptions -> Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument<'Model (requires 'Model : null)>
Public Sub New (operations As List(Of Operation(Of TModel)), serializerOptions As JsonSerializerOptions)

Parameters

operations
List<Operation<TModel>>
serializerOptions
JsonSerializerOptions

Applies to