Partager via


HttpRequestHeaderCollection.From Propriété

Définition

Obtient ou définit la valeur string qui représente la valeur d’un en-tête HTTP From sur une requête 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

Valeur de propriété

String

Platform::String

winrt::hstring

Valeur d’un en-tête HTTP De sur une requête HTTP. Une chaîne vide signifie que l’en-tête est absent.

Remarques

L’exemple de code suivant montre une méthode pour définir l’en-tête From sur un objet HttpRequestMessage à l’aide de la propriété From sur l’objet HttpRequestHeaderCollection .

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

S’applique à

Voir aussi