DataDictionary.Generated.Shortcut.unParseBody C# (CSharp) Méthode

unParseBody() public méthode

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
Résultat 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: ShortcutName
            if (this.getShortcutName() != null){
            pw.Write("<ShortcutName>");
            // Unparsing PcData
            acceptor.unParsePcData(pw, this.getShortcutName());
            pw.Write("</ShortcutName>");
            // Father is not a mixed
            pw.Write('\n');
            } // If
            // After Testing for empty content: ShortcutName
        }