次の方法で共有


HttpRequestHeaderCollection.From プロパティ

定義

HTTP 要求の From HTTP ヘッダーの値を表す文字列型 (String) の値を取得または設定します。

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

適用対象

こちらもご覧ください