rename private method (#1903)
This commit is contained in:
parent
23c1d891b7
commit
009260c50a
@ -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);
|
||||
|
||||
|
||||
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user