JsonElement.TryGetDecimal(Decimal) Method

Definition

Attempts to represent the current JSON number as a Decimal.

public:
 bool TryGetDecimal([Runtime::InteropServices::Out] System::Decimal % value);
public bool TryGetDecimal (out decimal value);
member this.TryGetDecimal : decimal -> bool
Public Function TryGetDecimal (ByRef value As Decimal) As Boolean

Parameters

value
Decimal

When this method returns, contains the decimal equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.

Returns

true if the number can be represented as a Decimal; otherwise, false.

Exceptions

The parent JsonDocument has been disposed.

Remarks

This method does not parse the contents of a JSON string value.

Applies to