HttpRequestHeaderCollection.From 属性

定义

获取或设置 字符串 ,表示 HTTP 请求上的 From HTTP 标头的值。

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

属性值

String

Platform::String

winrt::hstring

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);
}

适用于

另请参阅