Udostępnij za pośrednictwem


JsonPatchDocument<TModel>.Add Metoda

Definicja

Przeciążenia

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

Dodaj wartość na końcu listy

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

Dodaj operację. Spowoduje to na przykład { "op": "add", "path": "/a/b/c", "value": [ "foo", "bar" ] }

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

Dodaj wartość do listy na danej pozycji

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

Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs

Dodaj wartość na końcu listy

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

Parametry typu

TProp

typ wartości

Parametry

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

lokalizacja docelowa

value
TProp

wartość

Zwraca

Element JsonPatchDocument<TModel> do tworzenia łańcucha.

Dotyczy

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

Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs

Dodaj operację. Spowoduje to na przykład { "op": "add", "path": "/a/b/c", "value": [ "foo", "bar" ] }

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

Parametry typu

TProp

typ wartości

Parametry

path
Expression<Func<TModel,TProp>>

lokalizacja docelowa

value
TProp

wartość

Zwraca

Element JsonPatchDocument<TModel> do tworzenia łańcucha.

Dotyczy

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

Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs
Źródło:
JsonPatchDocumentOfT.cs

Dodaj wartość do listy na danej pozycji

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

Parametry typu

TProp

typ wartości

Parametry

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

lokalizacja docelowa

value
TProp

wartość

position
Int32

pozycja

Zwraca

Element JsonPatchDocument<TModel> do tworzenia łańcucha.

Dotyczy