HttpResponseHeaderCollection.TryAppendWithoutValidation 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將指定的專案附加至 HttpResponseHeaderCollection ,而不需驗證。
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
參數
- name
-
String
Platform::String
winrt::hstring
要附加的專案名稱。
- value
-
String
Platform::String
winrt::hstring
要附加的專案值。
傳回
Boolean
bool
如果附加專案,則為true;否則為 false。
備註
當您需要在 HTTP 回應上使用 HTTP 標頭時,可以使用 TryAppendWithoutValidation 方法,而 HTTP 標頭沒有強型別類別。 如果有 HTTP 標頭的強型別實作,則應該使用強型別類別的方法和屬性,而不是 TryAppendWithoutValidation 方法。