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