共用方式為


NameValueHeaderValue.TryParseStrictList 方法

定義

嘗試使用字串剖析規則將值序列剖析為 序列 NameValueHeaderValue

public:
 static bool TryParseStrictList(System::Collections::Generic::IList<System::String ^> ^ input, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Microsoft::Net::Http::Headers::NameValueHeaderValue ^> ^ % parsedValues);
public static bool TryParseStrictList (System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> parsedValues);
public static bool TryParseStrictList (System.Collections.Generic.IList<string>? input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue>? parsedValues);
static member TryParseStrictList : System.Collections.Generic.IList<string> * IList -> bool
Public Shared Function TryParseStrictList (input As IList(Of String), ByRef parsedValues As IList(Of NameValueHeaderValue)) As Boolean

參數

input
IList<String>

要剖析的值。

parsedValues
IList<NameValueHeaderValue>

剖析的值。

傳回

true 如果所有輸入都是有效的 StringWithQualityHeaderValue ,則為 ,否則 false 為 。

適用於