ฉันต้องการสร้างวิธีการ POST ใน WebApi เพื่อที่ฉันจะได้ส่งข้อมูลจากแอปพลิเคชันไปยังวิธี WebApi ฉันไม่สามารถรับค่าส่วนหัวได้
ที่นี่ฉันได้เพิ่มค่าส่วนหัวในแอปพลิเคชัน:
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);
}
ทำตามวิธีการโพสต์ 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();
}
}
วิธีการรับค่าส่วนหัวที่ถูกต้องคืออะไร?
ขอบคุณ.
string token = headers.GetValues("Custom").FirstOrDefault();
? แก้ไข: เพิ่งสังเกตว่าคุณจับคู่สไตล์ Qs ดั้งเดิม