Interface IJSONPatchResult

The result of ApplyJSONPatchAsync(String, String).

Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface IJSONPatchResult
Remarks

Check FailedOperation to determine whether any of the operations failed.

Properties

FailedOperation

Gets the index of the first operation that failed, or null if no operation failed.

Declaration
int? FailedOperation { get; }
Property Value
Type Description
System.Nullable<System.Int32>

The index of the first operation that failed, or null if no operation failed.

Back to top