var asyncHandle = restClient.ExecuteAsync<HotelModel>(request, response => {
Console.WriteLine(response.Data);
});
I was able to solve the problem however, using the following code:
restClient.ExecuteAsync<HotelModel>(request, (restRequestAsyncHandle, restResponse)=>
{
Cache.Add(cacheKey, restResponse.Data);
callback(restResponse.Data);
});