Merge pull request #150 from RikkiGibson/OperationHeaderContentType

Allow operation headers and custom headers to override contentType
This commit is contained in:
Rikki Gibson 2018-06-25 15:19:32 -07:00 коммит произвёл GitHub
Родитель 5447985a2b 708885e197
Коммит e4d9ebcb06
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -221,6 +221,10 @@ export class ServiceClient {
}
httpRequest.url = requestUrl.toString();
if (operationSpec.contentType) {
httpRequest.headers.set("Content-Type", operationSpec.contentType);
}
if (operationSpec.headerParameters) {
for (const headerParameter of operationSpec.headerParameters) {
let headerValue: any = getOperationArgumentValueFromParameter(operationArguments, headerParameter, operationSpec.serializer);
@ -238,10 +242,6 @@ export class ServiceClient {
}
}
if (operationSpec.contentType) {
httpRequest.headers.set("Content-Type", operationSpec.contentType);
}
if (operationArguments.customHeaders) {
for (const customHeaderName in operationArguments.customHeaders) {
httpRequest.headers.set(customHeaderName, operationArguments.customHeaders[customHeaderName]);