EntityTagHeaderValue.TryParseStrictList Method

Definition

Attempts to parse the sequence of values as a sequence of EntityTagHeaderValue using string parsing rules.

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

Parameters

inputs
IList<String>

The values to parse.

parsedValues
IList<EntityTagHeaderValue>

The parsed values.

Returns

true if all inputs are valid EntityTagHeaderValue, otherwise false.

Applies to