用c#向http://localhost:63300/api/Pms/GetLocationProperty?WareHouseCode=上料 api接口发出请求
时间: 2023-07-31 15:08:07 浏览: 142
c#获取IP所在地的代码
好的,以下是使用 C# 向 http://localhost:63300/api/Pms/GetLocationProperty 接口发出 HTTP GET 请求的示例代码:
```csharp
using System;
using System.Net.Http;
using System.Threading.Tasks;
public class Program
{
static async Task Main(string[] args)
{
var url = "http://localhost:63300/api/Pms/GetLocationProperty?WareHouseCode=上料";
using (var client = new HttpClient())
{
var response = await client.GetAsync(url);
if (response.IsSuccessStatusCode)
{
var content = await response.Content.ReadAsStringAsync();
Console.WriteLine(content);
}
else
{
Console.WriteLine($"Failed with status code {response.StatusCode}");
}
}
}
}
```
此示例使用 HttpClient 类创建 HTTP 客户端,然后使用 GetAsync 方法发出 GET 请求。如果请求成功,则使用 ReadAsStringAsync 方法从响应内容中读取数据并打印到控制台。如果请求失败,则打印响应状态码。注意,此示例中的 URL 中包含 WareHouseCode 参数,其值为“上料”。您可以根据需要更改参数值。
阅读全文