OData (Open Data Protocol)

Learn by elaboration

Gets a Query Response Object to access the Count property

var context = new DefaultContainer(new Uri("https://services.odata.org/v4/TripPinServiceRW/"));
DataServiceQuery<Person> query = context.People;
// Execute the query for all customers and get the response object.
QueryOperationResponse<Person> response =
    query.Execute() as QueryOperationResponse<Person>;

📇Additional Metadata