次の方法で共有


PatchOperation.Increment メソッド

定義

オーバーロード

Increment(String, Double)

を作成 PatchOperation して値をインクリメントします。

Increment(String, Int64)

を作成 PatchOperation して値をインクリメントします。

Increment(String, Double)

ソース:
PatchOperation.cs

を作成 PatchOperation して値をインクリメントします。

public static Microsoft.Azure.Cosmos.PatchOperation Increment (string path, double value);
static member Increment : string * double -> Microsoft.Azure.Cosmos.PatchOperation
Public Shared Function Increment (path As String, value As Double) As PatchOperation

パラメーター

path
String

ターゲットの場所の参照。

value
Double

指定したパスで インクリメントされる値。

戻り値

指定した入力の PatchOperation インスタンス。

適用対象

Increment(String, Int64)

ソース:
PatchOperation.cs

を作成 PatchOperation して値をインクリメントします。

public static Microsoft.Azure.Cosmos.PatchOperation Increment (string path, long value);
static member Increment : string * int64 -> Microsoft.Azure.Cosmos.PatchOperation
Public Shared Function Increment (path As String, value As Long) As PatchOperation

パラメーター

path
String

ターゲットの場所の参照。

value
Int64

指定したパスで インクリメントされる値。

戻り値

指定した入力の PatchOperation インスタンス。

適用対象