ConfigurationProvider.TryGet(String, String) Method

Definition

Attempts to find a value with the specified key.

public:
 virtual bool TryGet(System::String ^ key, [Runtime::InteropServices::Out] System::String ^ % value);
public virtual bool TryGet (string key, out string value);
public virtual bool TryGet (string key, out string? value);
abstract member TryGet : string * string -> bool
override this.TryGet : string * string -> bool
Public Overridable Function TryGet (key As String, ByRef value As String) As Boolean

Parameters

key
String

The key to lookup.

value
String

When this method returns, contains the value found at key, if one is found.

Returns

true if key has a value, false otherwise.

Implements

Applies to