File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Templates/CSharp/Requests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ namespace <#=method.Namespace.GetNamespaceName()#>
298298 /// </summary>
299299 /// <param name="<#=returnEntityParameter#>">The <#=returnEntityType#> object set with the properties to update.</param>
300300 /// <returns>The task to await for async call.</returns>
301- public <#=methodReturnType #> PatchAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
301+ public <#=methodOverloadReturnType #> PatchAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
302302 {
303303 return this.PatchAsync(<#=returnEntityParameter#>, CancellationToken.None);
304304 }
@@ -399,7 +399,7 @@ namespace <#=method.Namespace.GetNamespaceName()#>
399399 /// </summary>
400400 /// <param name="<#=returnEntityParameter#>">The <#=returnEntityType#> object to update.</param>
401401 /// <returns>The task to await for async call.</returns>
402- public <#=methodReturnType #> PutAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
402+ public <#=methodOverloadReturnType #> PutAsync(<#=returnEntityType#> <#=returnEntityParameter#>)
403403 {
404404 return this.PutAsync(<#=returnEntityParameter#>, CancellationToken.None);
405405 }
You can’t perform that action at this time.
0 commit comments