Documentation
    Preparing search index...

    Type Alias IJsonParseResult<T>

    Result of lenient JSON parsing.

    IJsonParseResult<T> represents the result of parsing JSON that may be incomplete, malformed, or contain non-standard syntax (e.g., unquoted keys, trailing commas, missing quotes).

    Unlike standard JSON parsing which fails on any syntax error, lenient parsing attempts to recover as much data as possible while reporting issues.

    Check the IJsonParseResult.success discriminator:

    Type Parameters

    • T = unknown

      The expected type after successful parsing

    Jeongho Nam - https://github.com/samchon