Class ApiRequestResponse
The response of an executed ApiRequest
Inheritance
System.Object
ApiRequestResponse
Namespace: PnP.Core.Services
Assembly: PnP.Core.dll
Syntax
public class ApiRequestResponse : object
Properties
ApiRequest
Gets the ApiRequest that resulted in this response
Declaration
public ApiRequest ApiRequest { get; }
Property Value
ApiRequest
|
Headers
Contains additional response headers (if any)
Declaration
public Dictionary<string, string> Headers { get; }
Property Value
Dictionary<System.String, System.String>
|
Response
The JSON response
Declaration
public string Response { get; }
Property Value
System.String
|
StatusCode
Contains the request http status code
Declaration
public HttpStatusCode StatusCode { get; }
Property Value
HttpStatusCode
|