DirectiveCollection.TryGetValues(String, IReadOnlyList<String>) Method

Definition

Gets the values specified for a given directive. A return value indicates whether the specified directive name was present.

public:
 bool TryGetValues(System::String ^ name, [Runtime::InteropServices::Out] System::Collections::Generic::IReadOnlyList<System::String ^> ^ % values);
public bool TryGetValues (string name, out System.Collections.Generic.IReadOnlyList<string>? values);
member this.TryGetValues : string * IReadOnlyList -> bool
Public Function TryGetValues (name As String, ByRef values As IReadOnlyList(Of String)) As Boolean

Parameters

name
String

The name of the directive.

values
IReadOnlyList<String>

The values provided for the specified directive.

Returns

true if a directive with the specified name was parsed; otherwise, false.

Applies to