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