This commit is contained in:
Michael Yanni 2020-01-07 18:48:56 -08:00
Родитель 3c16a1a30d
Коммит 5512eb1038
1 изменённых файлов: 4 добавлений и 8 удалений

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

@ -136,14 +136,10 @@ namespace AutoRest.CSharp.V3.CodeGen
var method = operation.Request.Method;
writer.Line($"request.Method = {typeof(RequestMethod)}.{method.ToRequestMethodName()};");
//using (operation.Paging != null ? writer.If("nextLinkUrl != null") : default)
//{
if (paging)
{
writer.Line($"request.Uri.Reset(new {typeof(Uri)}(nextLinkUrl));");
}
//}
//using (operation.Paging != null ? writer.Else() : default)
if (paging)
{
writer.Line($"request.Uri.Reset(new {typeof(Uri)}(nextLinkUrl));");
}
else
{
//TODO: Add logic to escape the strings when specified, using Uri.EscapeDataString(value);