JsonConfigFactory.parseJson - multiple declarations

Function JsonConfigFactory.parseJson

Parse configuration from a JSONValue tree.

ConfigDictionary parseJson (
  std.json.JSONValue json
);

Parameters

NameDescription
json JSONValue config to be parsed.

Returns

The parsed configuration.

Function JsonConfigFactory.parseJson

Alias for parseConfig

ConfigDictionary parseJson (
  string json
);

Parameters

NameDescription
json Text contents of the config to be parsed.

Returns

The parsed configuration.

See Also

parseConfig