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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET