HttpRequestHeaderCollection.TryAppendWithoutValidation(String, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Essayez d’ajouter l’élément spécifié à httpRequestHeaderCollection sans validation.
public:
virtual bool TryAppendWithoutValidation(Platform::String ^ name, Platform::String ^ value) = TryAppendWithoutValidation;
bool TryAppendWithoutValidation(winrt::hstring const& name, winrt::hstring const& value);
public bool TryAppendWithoutValidation(string name, string value);
function tryAppendWithoutValidation(name, value)
Public Function TryAppendWithoutValidation (name As String, value As String) As Boolean
Paramètres
- name
-
String
Platform::String
winrt::hstring
Nom de l’élément à ajouter.
- value
-
String
Platform::String
winrt::hstring
Valeur de l’élément à ajouter.
Retours
bool
true si l’élément a été ajouté ; sinon , false.
Remarques
La méthode TryAppendWithoutValidation est disponible lorsque vous devez utiliser un en-tête HTTP sur une requête HTTP qui n’a pas de classe fortement typée pour l’en-tête HTTP. S’il existe une implémentation fortement typée de l’en-tête HTTP, les méthodes et les propriétés de la classe fortement typée doivent être utilisées à la place de la méthode TryAppendWithoutValidation.