@@ -485,7 +485,8 @@ public static string SendStringToUrl(this string url, string method = HttpMethod
485
485
string ? requestBody = null , string ? contentType = null , string accept = "*/*" ,
486
486
Action < HttpRequestMessage > ? requestFilter = null , Action < HttpResponseMessage > ? responseFilter = null )
487
487
{
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 ) ;
489
490
}
490
491
491
492
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,
514
515
string ? contentType = null , string accept = "*/*" , Action < HttpRequestMessage > ? requestFilter = null ,
515
516
Action < HttpResponseMessage > ? responseFilter = null , CancellationToken token = default )
516
517
{
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 ) ;
519
520
}
520
521
521
522
public static async Task < string > SendStringToUrlAsync ( this HttpClient client , string url , string method = HttpMethods . Post ,
0 commit comments