Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TSettings Deserialize(string)

  • Declared in: RT.Serialization.Settings.SettingsFile<TSettings>
  • Abstract

Declaration

protected abstract TSettings Deserialize(
    string filename
)

Summary

Deserializes settings from filename. This method must not do any error handling of its own and should propagate all exceptions, including File Not Found and any parse errors. This method must not return default or null settings on failure; the SettingsFile<TSettings> class is responsible for that.

Parameters

stringfilename Full path to the settings file.

Returns

The deserialized instance.