JsonPatchDocument<TModel>.Remove Method

Definition

Overloads

Remove<TProp>(Expression<Func<TModel,IList<TProp>>>)

Remove value from end of list

Remove<TProp>(Expression<Func<TModel,TProp>>)

Remove value at target location. Will result in, for example, { "op": "remove", "path": "/a/b/c" }

Remove<TProp>(Expression<Func<TModel,IList<TProp>>>, Int32)

Remove value from list at given position

Remove<TProp>(Expression<Func<TModel,IList<TProp>>>)

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

Remove value from end of list

public:
generic <typename TProp>
 Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Remove(System::Linq::Expressions::Expression<Func<TModel, System::Collections::Generic::IList<TProp> ^> ^> ^ path);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Remove<TProp> (System.Linq.Expressions.Expression<Func<TModel,System.Collections.Generic.IList<TProp>>> path);
member this.Remove : System.Linq.Expressions.Expression<Func<'Model, System.Collections.Generic.IList<'Prop>>> -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Remove(Of TProp) (path As Expression(Of Func(Of TModel, IList(Of TProp)))) As JsonPatchDocument(Of TModel)

Type Parameters

TProp

value type

Parameters

path
Expression<Func<TModel,IList<TProp>>>

target location

Returns

The JsonPatchDocument<TModel> for chaining.

Applies to

Remove<TProp>(Expression<Func<TModel,TProp>>)

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

Remove value at target location. Will result in, for example, { "op": "remove", "path": "/a/b/c" }

public:
generic <typename TProp>
 Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Remove(System::Linq::Expressions::Expression<Func<TModel, TProp> ^> ^ path);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Remove<TProp> (System.Linq.Expressions.Expression<Func<TModel,TProp>> path);
member this.Remove : System.Linq.Expressions.Expression<Func<'Model, 'Prop>> -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Remove(Of TProp) (path As Expression(Of Func(Of TModel, TProp))) As JsonPatchDocument(Of TModel)

Type Parameters

TProp

Parameters

path
Expression<Func<TModel,TProp>>

target location

Returns

The JsonPatchDocument<TModel> for chaining.

Applies to

Remove<TProp>(Expression<Func<TModel,IList<TProp>>>, Int32)

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

Remove value from list at given position

public:
generic <typename TProp>
 Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Remove(System::Linq::Expressions::Expression<Func<TModel, System::Collections::Generic::IList<TProp> ^> ^> ^ path, int position);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Remove<TProp> (System.Linq.Expressions.Expression<Func<TModel,System.Collections.Generic.IList<TProp>>> path, int position);
member this.Remove : System.Linq.Expressions.Expression<Func<'Model, System.Collections.Generic.IList<'Prop>>> * int -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Remove(Of TProp) (path As Expression(Of Func(Of TModel, IList(Of TProp))), position As Integer) As JsonPatchDocument(Of TModel)

Type Parameters

TProp

value type

Parameters

path
Expression<Func<TModel,IList<TProp>>>

target location

position
Int32

position

Returns

The JsonPatchDocument<TModel> for chaining.

Applies to