Click or drag to resize

XmlFileSettings Class

A settings processor that uses a single XML document file as the backing storage.
Inheritance Hierarchy
SystemObject
  Orthogonal.NSettingsBaseProcessor
    Orthogonal.NSettingsXmlFileSettings

Namespace: Orthogonal.NSettings
Assembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 4.0.1
Syntax
C#
public class XmlFileSettings : BaseProcessor

The XmlFileSettings type exposes the following members.

Constructors
 NameDescription
Public methodXmlFileSettings Constructs a settings processor over a single XML document file.
Top
Remarks

The XML settings processor is only suitable for use when there is a moderate number of settings which are not frequently modified. The backing file is flushed and rewritten each time a setting is modified, so a performance bottleneck may develop if large numbers of settings result in a large backing file, or if frequent settings modifications cause the file to be frequently rewritten.

The RegistrySettings processor is more suitable when higher capacity and performance is required.

See Also