public virtual async Task MaterializeAsync(DocumentHeaderResponse response, HttpResponseMessage httpResponse)
        {
            await _failedResponseMaterializer.MaterializeAsync(response, httpResponse).ForAwait();

            SetMissingIdFromRequestUri(response, httpResponse);
        }
예제 #2
0
        public virtual async Task MaterializeAsync <T>(EntityResponse <T> response, HttpResponseMessage httpResponse) where T : class
        {
            await _failedResponseMaterializer.MaterializeAsync(response, httpResponse).ForAwait();

            SetMissingIdFromRequestUri(response, httpResponse);
        }