CookieHeaderValue.TryParseList Method

Definition

Attempts to parse the sequence of values as a sequence of 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

Parameters

inputs
IList<String>

The values to parse.

parsedValues
IList<CookieHeaderValue>

The parsed values.

Returns

true if all inputs are valid CookieHeaderValue, otherwise false.

Applies to