ContentDispositionHeaderValue.TryParse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷字串是否為有效的 ContentDispositionHeaderValue 資訊。
public:
static bool TryParse(System::String ^ input, [Runtime::InteropServices::Out] System::Net::Http::Headers::ContentDispositionHeaderValue ^ % parsedValue);
public static bool TryParse (string input, out System.Net.Http.Headers.ContentDispositionHeaderValue parsedValue);
public static bool TryParse (string? input, out System.Net.Http.Headers.ContentDispositionHeaderValue? parsedValue);
static member TryParse : string * ContentDispositionHeaderValue -> bool
Public Shared Function TryParse (input As String, ByRef parsedValue As ContentDispositionHeaderValue) As Boolean
參數
- input
- String
要驗證的字串。
- parsedValue
- ContentDispositionHeaderValue
字串的 ContentDispositionHeaderValue 版本。
傳回
如果 input
是有效的 ContentDispositionHeaderValue 資訊,則為 true
;否則為 false
。