Computation expression builder for PatchConcurrentlyOperation{T, E}.
| Constructor | Description |
Full Usage:
PatchConcurrentlyBuilder(enableContentResponseOnWrite)
Parameters:
bool
Returns: PatchConcurrentlyBuilder<'T, 'E>
|
|
| Instance member | Description |
Full Usage:
consistencyLevel consistencyLevel
Parameters:
Nullable<ConsistencyLevel>
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
enableContentResponseOnWrite enableContentResponseOnWrite
Parameters:
bool
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
filterPredicate filterPredicate
Parameters:
string
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
|
|
Full Usage:
indexingDirective indexingDirective
Parameters:
Nullable<IndexingDirective>
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
partitionKey partitionKey
Parameters:
string
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
partitionKey partitionKey
Parameters:
PartitionKey
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
postTrigger trigger
Parameters:
string
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
postTriggers triggers
Parameters:
string seq
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
preTrigger trigger
Parameters:
string
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
preTriggers triggers
Parameters:
string seq
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
requestOptions options
Parameters:
PatchItemRequestOptions
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
sessionToken sessionToken
Parameters:
string
Returns: PatchConcurrentlyOperation<'a, 'b>
|
|
Full Usage:
update update
Parameters:
'T -> Task<Result<PatchOperation list, 'E>>
Returns: PatchConcurrentlyOperation<'T, 'E>
|
Sets the function that computes the patch operations to apply from the current item. The function runs once per attempt: after every precondition failure (HTTP 412) the item is read again and the function is called again with the fresh item, so it must not have side effects that are unsafe to repeat. Returning an error stops the operation and reports that error through PatchConcurrentResult{T, E}.
|
|
|