JsonParsers.JsonPropertyNamed<T> method (1 of 2)

Parses a JSON object property into its value. Fails if the property name doesn’t match the specified name.

public static IParser<T> JsonPropertyNamed<T>(this IParser<T> parser, string name)

See Also


JsonParsers.JsonPropertyNamed<T> method (2 of 2)

Parses a JSON object property into its value. Fails if the property name doesn’t match the specified name.

public static IParser<T> JsonPropertyNamed<T>(this IParser<T> parser, string name, 
    StringComparison comparison)

See Also