Table of Contents

Method Update

Namespace
Terminal.Gui
Assembly
Terminal.Gui.dll

Update(Stream, string)

Updates the SettingsScope with the settings in a JSON string.

public SettingsScope? Update(Stream stream, string source)

Parameters

stream Stream

Json document to update the settings with.

source string

The source (filename/resource name) the Json document was read from.

Returns

SettingsScope

Update(string)

Updates the SettingsScope with the settings in a JSON file.

public SettingsScope? Update(string filePath)

Parameters

filePath string

Returns

SettingsScope

Update(string, string)

Updates the SettingsScope with the settings in a JSON string.

public SettingsScope? Update(string json, string source)

Parameters

json string

Json document to update the settings with.

source string

The source (filename/resource name) the Json document was read from.

Returns

SettingsScope