Tôi cần tạo phương thức POST trong WebApi để có thể gửi dữ liệu từ ứng dụng đến phương thức WebApi. Tôi không thể nhận giá trị tiêu đề.
Ở đây tôi đã thêm các giá trị tiêu đề trong ứng dụng:
using (var client = new WebClient())
{
// Set the header so it knows we are sending JSON.
client.Headers[HttpRequestHeader.ContentType] = "application/json";
client.Headers.Add("Custom", "sample");
// Make the request
var response = client.UploadString(url, jsonObj);
}
Theo phương pháp đăng WebApi:
public string Postsam([FromBody]object jsonData)
{
HttpRequestMessage re = new HttpRequestMessage();
var headers = re.Headers;
if (headers.Contains("Custom"))
{
string token = headers.GetValues("Custom").First();
}
}
Phương pháp chính xác để nhận giá trị tiêu đề là gì?
Cảm ơn.
string token = headers.GetValues("Custom").FirstOrDefault();
? Chỉnh sửa: Chỉ nhận thấy rằng bạn đã phù hợp với kiểu Qs ban đầu.