Table of Contents

Class BatchRequest

Namespace
NetCoreForce.Client.Models
Assembly
NetCoreForce.Client.dll
public class BatchRequest
Inheritance
BatchRequest
Inherited Members

Properties

BatchRequests

Collection of subrequests to execute.

[JsonProperty(PropertyName = "batchRequests")]
public List<BatchSubRequest> BatchRequests { get; set; }

Property Value

List<BatchSubRequest>

HaltOnError

Controls whether Salesforce should stop processing subrequests if a subrequest fails. The default is false.

If the value is false and a subrequest in the batch doesn’t complete, Salesforce attempts to execute the subsequent subrequests in the batch.

[JsonProperty(PropertyName = "haltOnError")]
public bool HaltOnError { get; set; }

Property Value

bool