JsonPatchDocument<TModel>.Replace Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Replace<TProp>(Expression<Func<TModel,TProp>>, TProp) |
Substitua o valor. Resultará em, por exemplo, { "op": "replace", "path": "/a/b/c", "value": 42 } |
Replace<TProp>(Expression<Func<TModel,IList<TProp>>>, TProp) |
Substituir valor no final de uma lista |
Replace<TProp>(Expression<Func<TModel,IList<TProp>>>, TProp, Int32) |
Substituir valor em uma lista em determinada posição |
Replace<TProp>(Expression<Func<TModel,TProp>>, TProp)
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
Substitua o valor. Resultará em, por exemplo, { "op": "replace", "path": "/a/b/c", "value": 42 }
public:
generic <typename TProp>
Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Replace(System::Linq::Expressions::Expression<Func<TModel, TProp> ^> ^ path, TProp value);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Replace<TProp> (System.Linq.Expressions.Expression<Func<TModel,TProp>> path, TProp value);
member this.Replace : System.Linq.Expressions.Expression<Func<'Model, 'Prop>> * 'Prop -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Replace(Of TProp) (path As Expression(Of Func(Of TModel, TProp)), value As TProp) As JsonPatchDocument(Of TModel)
Parâmetros de tipo
- TProp
Parâmetros
- path
- Expression<Func<TModel,TProp>>
local de destino
- value
- TProp
value
Retornos
O JsonPatchDocument<TModel> para encadeamento.
Aplica-se a
Replace<TProp>(Expression<Func<TModel,IList<TProp>>>, TProp)
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
Substituir valor no final de uma lista
public:
generic <typename TProp>
Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Replace(System::Linq::Expressions::Expression<Func<TModel, System::Collections::Generic::IList<TProp> ^> ^> ^ path, TProp value);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Replace<TProp> (System.Linq.Expressions.Expression<Func<TModel,System.Collections.Generic.IList<TProp>>> path, TProp value);
member this.Replace : System.Linq.Expressions.Expression<Func<'Model, System.Collections.Generic.IList<'Prop>>> * 'Prop -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Replace(Of TProp) (path As Expression(Of Func(Of TModel, IList(Of TProp))), value As TProp) As JsonPatchDocument(Of TModel)
Parâmetros de tipo
- TProp
tipo de valor
Parâmetros
- path
- Expression<Func<TModel,IList<TProp>>>
local de destino
- value
- TProp
value
Retornos
O JsonPatchDocument<TModel> para encadeamento.
Aplica-se a
Replace<TProp>(Expression<Func<TModel,IList<TProp>>>, TProp, Int32)
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
- Origem:
- JsonPatchDocumentOfT.cs
Substituir valor em uma lista em determinada posição
public:
generic <typename TProp>
Microsoft::AspNetCore::JsonPatch::JsonPatchDocument<TModel> ^ Replace(System::Linq::Expressions::Expression<Func<TModel, System::Collections::Generic::IList<TProp> ^> ^> ^ path, TProp value, int position);
public Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<TModel> Replace<TProp> (System.Linq.Expressions.Expression<Func<TModel,System.Collections.Generic.IList<TProp>>> path, TProp value, int position);
member this.Replace : System.Linq.Expressions.Expression<Func<'Model, System.Collections.Generic.IList<'Prop>>> * 'Prop * int -> Microsoft.AspNetCore.JsonPatch.JsonPatchDocument<'Model (requires 'Model : null)>
Public Function Replace(Of TProp) (path As Expression(Of Func(Of TModel, IList(Of TProp))), value As TProp, position As Integer) As JsonPatchDocument(Of TModel)
Parâmetros de tipo
- TProp
tipo de valor
Parâmetros
- path
- Expression<Func<TModel,IList<TProp>>>
local de destino
- value
- TProp
value
- position
- Int32
position
Retornos
O JsonPatchDocument<TModel> para encadeamento.