CookieHeaderValue.TryParseList 方法

定义

尝试将值序列分析为 的 CookieHeaderValue序列。

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

参数

inputs
IList<String>

要分析的值。

parsedValues
IList<CookieHeaderValue>

分析的值。

返回

true 如果所有输入都有效 CookieHeaderValue,则为 ,否则为 false

适用于