JsonPatchDocument<TModel>.ApplyTo Method

Definition

Overloads

ApplyTo(TModel)

Apply this JsonPatchDocument

ApplyTo(TModel, IObjectAdapter)

Apply this JsonPatchDocument

ApplyTo(TModel, Action<JsonPatchError>)

Apply this JsonPatchDocument

ApplyTo(TModel, IObjectAdapter, Action<JsonPatchError>)

Apply this JsonPatchDocument

ApplyTo(TModel)

Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs

Apply this JsonPatchDocument

public:
 void ApplyTo(TModel objectToApplyTo);
public void ApplyTo (TModel objectToApplyTo);
member this.ApplyTo : 'Model -> unit
Public Sub ApplyTo (objectToApplyTo As TModel)

Parameters

objectToApplyTo
TModel

Object to apply the JsonPatchDocument to

Applies to

ApplyTo(TModel, IObjectAdapter)

Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs

Apply this JsonPatchDocument

public:
 void ApplyTo(TModel objectToApplyTo, Microsoft::AspNetCore::JsonPatch::Adapters::IObjectAdapter ^ adapter);
public void ApplyTo (TModel objectToApplyTo, Microsoft.AspNetCore.JsonPatch.Adapters.IObjectAdapter adapter);
member this.ApplyTo : 'Model * Microsoft.AspNetCore.JsonPatch.Adapters.IObjectAdapter -> unit
Public Sub ApplyTo (objectToApplyTo As TModel, adapter As IObjectAdapter)

Parameters

objectToApplyTo
TModel

Object to apply the JsonPatchDocument to

adapter
IObjectAdapter

IObjectAdapter instance to use when applying

Applies to

ApplyTo(TModel, Action<JsonPatchError>)

Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs

Apply this JsonPatchDocument

public:
 void ApplyTo(TModel objectToApplyTo, Action<Microsoft::AspNetCore::JsonPatch::JsonPatchError ^> ^ logErrorAction);
public void ApplyTo (TModel objectToApplyTo, Action<Microsoft.AspNetCore.JsonPatch.JsonPatchError> logErrorAction);
member this.ApplyTo : 'Model * Action<Microsoft.AspNetCore.JsonPatch.JsonPatchError> -> unit
Public Sub ApplyTo (objectToApplyTo As TModel, logErrorAction As Action(Of JsonPatchError))

Parameters

objectToApplyTo
TModel

Object to apply the JsonPatchDocument to

logErrorAction
Action<JsonPatchError>

Action to log errors

Applies to

ApplyTo(TModel, IObjectAdapter, Action<JsonPatchError>)

Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs
Source:
JsonPatchDocumentOfT.cs

Apply this JsonPatchDocument

public:
 void ApplyTo(TModel objectToApplyTo, Microsoft::AspNetCore::JsonPatch::Adapters::IObjectAdapter ^ adapter, Action<Microsoft::AspNetCore::JsonPatch::JsonPatchError ^> ^ logErrorAction);
public void ApplyTo (TModel objectToApplyTo, Microsoft.AspNetCore.JsonPatch.Adapters.IObjectAdapter adapter, Action<Microsoft.AspNetCore.JsonPatch.JsonPatchError> logErrorAction);
member this.ApplyTo : 'Model * Microsoft.AspNetCore.JsonPatch.Adapters.IObjectAdapter * Action<Microsoft.AspNetCore.JsonPatch.JsonPatchError> -> unit
Public Sub ApplyTo (objectToApplyTo As TModel, adapter As IObjectAdapter, logErrorAction As Action(Of JsonPatchError))

Parameters

objectToApplyTo
TModel

Object to apply the JsonPatchDocument to

adapter
IObjectAdapter

IObjectAdapter instance to use when applying

logErrorAction
Action<JsonPatchError>

Action to log errors

Applies to