NameValueHeaderValue.TryParseList Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to parse the sequence of values as a sequence of NameValueHeaderValue.
public:
static bool TryParseList(System::Collections::Generic::IList<System::String ^> ^ input, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Microsoft::Net::Http::Headers::NameValueHeaderValue ^> ^ % parsedValues);
public static bool TryParseList (System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> parsedValues);
public static bool TryParseList (System.Collections.Generic.IList<string>? input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue>? parsedValues);
static member TryParseList : System.Collections.Generic.IList<string> * IList -> bool
Public Shared Function TryParseList (input As IList(Of String), ByRef parsedValues As IList(Of NameValueHeaderValue)) As Boolean
Parameters
- parsedValues
- IList<NameValueHeaderValue>
The parsed values.
Returns
true
if all inputs are valid NameValueHeaderValue, otherwise false
.