JsonDocumentAuthExtensions.GetString(JsonElement, String) Method

Definition

Gets a string property value from the specified JsonElement.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ GetString(System::Text::Json::JsonElement element, System::String ^ key);
public static string GetString (this System.Text.Json.JsonElement element, string key);
public static string? GetString (this System.Text.Json.JsonElement element, string key);
static member GetString : System.Text.Json.JsonElement * string -> string
<Extension()>
Public Function GetString (element As JsonElement, key As String) As String

Parameters

element
JsonElement

The JsonElement.

key
String

The property name.

Returns

The property value.

Applies to