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

适用于