Can I pass custom data in the HTTP header?

前端 未结 7 1175
醉梦人生
醉梦人生 2021-02-12 17:14

I have a whole bunch of web services each with several web methods. The consumers of these services are varied and many. I want to augment each of these web methods with an extr

7条回答
  •  臣服心动
    2021-02-12 18:05

    Request.Headers.Add("headername", "headervalue");
    Response.Headers.Add("headername", "headervalue");
    

提交回复
热议问题