JsonElement.TryGetDecimal(Decimal) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.