Bewerken

Delen via


PatchOperation.Add<T>(String, T) Method

Definition

Creates patch details for add operation.

public:
generic <typename T>
 static System::Cloud::DocumentDb::PatchOperation Add(System::String ^ path, T value);
public static System.Cloud.DocumentDb.PatchOperation Add<T>(string path, T value);
static member Add : string * 'T -> System.Cloud.DocumentDb.PatchOperation
Public Shared Function Add(Of T) (path As String, value As T) As PatchOperation

Type Parameters

T

The type of value to be patched.

Parameters

path
String

The path to be patched.

value
T

The value to be patched.

Returns

Created patch operation.

Applies to