Class BatchResult
Holds information about the outcome of each batch request
Inheritance
System.Object
BatchResult
Namespace: PnP.Core.Services
Assembly: PnP.Core.dll
Syntax
public class BatchResult : object
Properties
ApiBody
API call body
Declaration
public string ApiBody { get; }
Property Value
System.String
|
ApiMethod
API call method
Declaration
public HttpMethod ApiMethod { get; }
Property Value
HttpMethod
|
ApiRequest
API call request
Declaration
public string ApiRequest { get; }
Property Value
System.String
|
ApiResponse
The response content from the batch request
Declaration
public string ApiResponse { get; }
Property Value
System.String
|
ApiType
API call Type
Declaration
public string ApiType { get; }
Property Value
System.String
|
BatchRequestId
Id of the BatchRequest this result is for
Declaration
public Guid BatchRequestId { get; }
Property Value
Guid
|
Error
If an error happened then the error information is stored here
Declaration
public ServiceError Error { get; }
Property Value
ServiceError
|
StatusCode
Status code of the request
Declaration
public HttpStatusCode StatusCode { get; }
Property Value
HttpStatusCode
|