@@ -485,7 +485,8 @@ public static string SendStringToUrl(this string url, string method = HttpMethod
485485 string ? requestBody = null , string ? contentType = null , string accept = "*/*" ,
486486 Action < HttpRequestMessage > ? requestFilter = null , Action < HttpResponseMessage > ? responseFilter = null )
487487 {
488- return Create ( ) . SendStringToUrl ( url , method , requestBody , contentType , accept , requestFilter , responseFilter ) ;
488+ return Create ( ) . SendStringToUrl ( url , method : method , requestBody : requestBody ,
489+ contentType : contentType , accept : accept , requestFilter : requestFilter , responseFilter : responseFilter ) ;
489490 }
490491
491492 public static string SendStringToUrl ( this HttpClient client , string url , string method = HttpMethods . Post ,
@@ -514,8 +515,8 @@ public static Task<string> SendStringToUrlAsync(this string url,
514515 string ? contentType = null , string accept = "*/*" , Action < HttpRequestMessage > ? requestFilter = null ,
515516 Action < HttpResponseMessage > ? responseFilter = null , CancellationToken token = default )
516517 {
517- return Create ( ) . SendStringToUrlAsync ( url , method , requestBody , contentType , accept ,
518- requestFilter , responseFilter , token ) ;
518+ return Create ( ) . SendStringToUrlAsync ( url , method : method , requestBody : requestBody , contentType : contentType , accept : accept ,
519+ requestFilter : requestFilter , responseFilter : responseFilter , token ) ;
519520 }
520521
521522 public static async Task < string > SendStringToUrlAsync ( this HttpClient client , string url , string method = HttpMethods . Post ,
0 commit comments