Index: Ringtoets/Common/src/Ringtoets.Common.IO/Writers/XmlWriterExtensions.cs =================================================================== diff -u -r7bd351546131ba071f60e1c6266a93c2e8e53980 -rafe6bfdec2a155872cacd3bb3ed786ee5a785118 --- Ringtoets/Common/src/Ringtoets.Common.IO/Writers/XmlWriterExtensions.cs (.../XmlWriterExtensions.cs) (revision 7bd351546131ba071f60e1c6266a93c2e8e53980) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Writers/XmlWriterExtensions.cs (.../XmlWriterExtensions.cs) (revision afe6bfdec2a155872cacd3bb3ed786ee5a785118) @@ -36,10 +36,11 @@ /// Writes a single as a stochast element in file. /// /// The writer to use to write the distribution. - /// + /// The name of the distribution to write. /// The distribution to write. /// Thrown when the is /// in an invalid state for writing. + /// Thrown when any of the input parameters is null. public static void WriteDistribution(this XmlWriter writer, string name, MeanStandardDeviationStochastConfiguration distribution) { if (writer == null) @@ -74,10 +75,11 @@ /// Writes a single as a stochast element in file. /// /// The writer to use to write the distribution. - /// + /// The name of the distribution to write. /// The distribution to write. /// Thrown when the is /// in an invalid state for writing. + /// Thrown when any of the input parameters is null. public static void WriteDistribution(this XmlWriter writer, string name, MeanVariationCoefficientStochastConfiguration distribution) { if (writer == null) @@ -115,6 +117,7 @@ /// The wave reduction to write. /// Thrown when the is /// in an invalid state for writing. + /// Thrown when any of the input parameters is null. public static void WriteWaveReduction(this XmlWriter writer, WaveReductionConfiguration waveReduction) { if (writer == null) @@ -148,6 +151,12 @@ writer.WriteEndElement(); } + /// + /// Writes the start tag of a folder element. + /// + /// The writer to use to write the folder. + /// The name of the folder. + /// Thrown when any of the input parameters is null. public static void WriteStartFolder(this XmlWriter writer, string name) { if (writer == null)