rename private method (#1903)

This commit is contained in:
Victor Vazquez 2021-03-15 17:51:14 -07:00 committed by GitHub
parent 23c1d891b7
commit 009260c50a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -139,7 +139,7 @@ namespace Azure { namespace Core { namespace Http {
std::unique_ptr<_detail::HandleManager>& handleManager,
HttpMethod requestMethod,
HttpStatusCode responseStatusCode);
std::unique_ptr<RawResponse> GetRawResponse(
std::unique_ptr<RawResponse> SendRequestAndGetResponse(
std::unique_ptr<_detail::HandleManager> handleManager,
HttpMethod requestMethod);

View File

@ -426,7 +426,7 @@ int64_t WinHttpTransport::GetContentLength(
return contentLength;
}
std::unique_ptr<RawResponse> WinHttpTransport::GetRawResponse(
std::unique_ptr<RawResponse> WinHttpTransport::SendRequestAndGetResponse(
std::unique_ptr<_detail::HandleManager> handleManager,
HttpMethod requestMethod)
{
@ -559,7 +559,7 @@ std::unique_ptr<RawResponse> WinHttpTransport::Send(Request& request, Context co
ReceiveResponse(handleManager);
return GetRawResponse(std::move(handleManager), request.GetMethod());
return SendRequestAndGetResponse(std::move(handleManager), request.GetMethod());
}
// Read the response from the sent request.