HttpRequestHeaderCollection.From 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
property Platform::String ^ From { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring From();
void From(winrt::hstring value);
public string From { get; set; }
var string = httpRequestHeaderCollection.from;
httpRequestHeaderCollection.from = string;
Public Property From As String
属性值
HTTP 请求上的 From HTTP 标头的值。 空字符串表示标头不存在。
注解
以下示例代码演示了一个方法,该方法使用 HttpRequestHeaderCollection 对象的 From 属性在 HttpRequestMessage 对象上设置 From 标头。
public void DemonstrateHeaderRequestFrom() {
var request = new HttpRequestMessage();
// Set the header with a string.
request.Headers.From = "person@example.com";
// Get the strong type out
System.Diagnostics.Debug.WriteLine("From value: {0}", request.Headers.From);
}