@@ -105,12 +105,12 @@ namespace <#=method.Namespace.GetNamespaceName()#>
105105 /// <summary>
106106 /// Issues the POST request.
107107 /// </summary>
108- /// <param name="" cancellationToken"" >The <see cref="" CancellationToken" "/> for the request.</param>
108+ /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
109109<#
110110 if (returnsStream)
111111 {
112112#>
113- /// <param name="" httpCompletionOption"" >The <see cref="" HttpCompletionOption" "/> for the request.</param>
113+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
114114<#
115115 }
116116#>
@@ -205,12 +205,12 @@ namespace <#=method.Namespace.GetNamespaceName()#>
205205 /// <summary>
206206 /// Issues the GET request.
207207 /// </summary>
208- /// <param name="" cancellationToken"" >The <see cref="" CancellationToken" "/> for the request.</param>
208+ /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
209209<#
210210 if (returnsStream)
211211 {
212212#>
213- /// <param name="" httpCompletionOption"" >The <see cref="" HttpCompletionOption" "/> for the request.</param>
213+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
214214<#
215215 }
216216#>
@@ -296,7 +296,7 @@ namespace <#=method.Namespace.GetNamespaceName()#>
296296 /// <summary>
297297 /// Issues the PATCH request.
298298 /// </summary>
299- /// <param name=<#=returnEntityParameter#>>The <#=returnEntityType#> object set with the properties to update.</param>
299+ /// <param name=" <#=returnEntityParameter#>" >The <#=returnEntityType#> object set with the properties to update.</param>
300300 /// <returns>The task to await for async call.</returns>
301301 public <#=methodReturnType#> PatchAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
302302 {
@@ -306,13 +306,13 @@ namespace <#=method.Namespace.GetNamespaceName()#>
306306 /// <summary>
307307 /// Issues the PATCH request.
308308 /// </summary>
309- /// <param name=<#=returnEntityParameter#>>The <#=returnEntityType#> object set with the properties to update.</param>
310- /// <param name="" cancellationToken"" >The <see cref="" CancellationToken" "/> for the request.</param>
309+ /// <param name=" <#=returnEntityParameter#>" >The <#=returnEntityType#> object set with the properties to update.</param>
310+ /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
311311<#
312312 if (returnsStream)
313313 {
314314#>
315- /// <param name="" httpCompletionOption"" >The <see cref="" HttpCompletionOption" "/> for the request.</param>
315+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
316316<#
317317 }
318318#>
@@ -397,7 +397,7 @@ namespace <#=method.Namespace.GetNamespaceName()#>
397397 /// <summary>
398398 /// Issues the PUT request.
399399 /// </summary>
400- /// <param name=<#=returnEntityParameter#>>The <#=returnEntityType#> object to update.</param>
400+ /// <param name=" <#=returnEntityParameter#>" >The <#=returnEntityType#> object to update.</param>
401401 /// <returns>The task to await for async call.</returns>
402402 public <#=methodReturnType#> PutAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
403403 {
@@ -407,13 +407,13 @@ namespace <#=method.Namespace.GetNamespaceName()#>
407407 /// <summary>
408408 /// Issues the PUT request.
409409 /// </summary>
410- /// <param name=<#=returnEntityParameter#>>The <#=returnEntityType#> object to update.</param>
411- /// <param name="" cancellationToken"" >The <see cref="" CancellationToken" "/> for the request.</param>
410+ /// <param name=" <#=returnEntityParameter#>" >The <#=returnEntityType#> object to update.</param>
411+ /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
412412<#
413413 if (returnsStream)
414414 {
415415#>
416- /// <param name="" httpCompletionOption"" >The <see cref="" HttpCompletionOption" "/> for the request.</param>
416+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
417417<#
418418 }
419419#>
0 commit comments