/// <summary> /// Initializes a new instance of the <see cref="XmlFormatter"/> class. /// </summary> /// <param name="options">The configured <see cref="XmlFormatterOptions"/>.</param> public XmlFormatter(XmlFormatterOptions options) { Validator.ThrowIfNull(options, nameof(options)); Options = options; if (options.SynchronizeWithXmlConvert) { options.Settings.ApplyToDefaultSettings(); } }
/// <summary> /// Initializes a new instance of the <see cref="XmlFormatter"/> class. /// </summary> /// <param name="options">The configured <see cref="XmlFormatterOptions"/>.</param> public XmlFormatter(XmlFormatterOptions options) { Validator.ThrowIfNull(options, nameof(options)); Options = options; }