DataDictionary.Generated.Range.unParseBody C# (CSharp) Method

unParseBody() public method

This method is used by XMLBooster-generated code internally. Please refrain from using it, as it might produce unexpected results, and might change or even disappear in the future.
public unParseBody ( TextWriter pw ) : void
pw System.IO.TextWriter
return void
        public override void unParseBody(TextWriter pw)
        {
            #pragma warning disable 0168, 0219
            int i;
            #pragma warning restore 0168, 0219

            base.unParseBody(pw);
            // Unparsing Enclosed
            // Testing for empty content: SpecialValues
            if (countSpecialValues() > 0){
            pw.Write("<SpecialValues>");
            pw.Write('\n');
            // Unparsing Repeat
            // Unparsing repetition
            unParse(pw, this.getSpecialValues(), false, "<EnumValue", "</EnumValue>");
            pw.Write("</SpecialValues>");
            // Father is not a mixed
            pw.Write('\n');
            } // If
            // After Testing for empty content: SpecialValues
        }