如何在http客户端c#上添加路径参数
how to add Path Parameter on http client c#
如何在http客户端c#上添加路径参数
url 例子
https:///testurl/accounts/product/:productid/user/:userid?fields=Attributes
我尝试使用 KeyValuePair 添加,但没有成功。
您可以使用字符串插值和连接。我认为这就是您所要求的;
int userId = 1;
string url = $"https://testurl/accounts/product/:productid/user/{userId}";
// Add here if there is any condtion if() or any loop
url += "?fields=Attributes";
如何在http客户端c#上添加路径参数 url 例子 https:///testurl/accounts/product/:productid/user/:userid?fields=Attributes
我尝试使用 KeyValuePair 添加,但没有成功。
您可以使用字符串插值和连接。我认为这就是您所要求的;
int userId = 1;
string url = $"https://testurl/accounts/product/:productid/user/{userId}";
// Add here if there is any condtion if() or any loop
url += "?fields=Attributes";