Exemplo n.º 1
0
        /// <summary>
        /// Allows the class to be copied
        /// </summary>
        /// <remarks>
        /// Performs a 'deep copy' of all the data in the class (and its children)
        /// </remarks>
        public override object Clone()
        {
            DESADV_XSDLib.Document_DespatchAdvice newObject = new DESADV_XSDLib.Document_DespatchAdvice(_elementName);
            foreach (DESADV_XSDLib.Document_DespatchAdvice_Group o in m_Document_DespatchAdvice_Group)
            {
                newObject.m_Document_DespatchAdvice_Group.Add((DESADV_XSDLib.Document_DespatchAdvice_Group)o.Clone());
            }

// ##HAND_CODED_BLOCK_START ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS

// Add Additional clone code here...

// ##HAND_CODED_BLOCK_END ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS

            return(newObject);
        }
Exemplo n.º 2
0
        // Shows a simple example of how the class Document_DespatchAdvice
        // can be used. This class can be used to load documents whose
        // root (document) element is <Document-DespatchAdvice>.
        private void SimpleTestDocument_DespatchAdvice(string filename)
        {
            try
            {
                // create an instance of the class to load the XML file into
                DESADV_XSDLib.Document_DespatchAdvice elm = new DESADV_XSDLib.Document_DespatchAdvice();

                // load the xml from a file into the object (the root element in the
                // xml document must be <Document-DespatchAdvice>.
                elm.FromXmlFile(filename);

                // This will open up a viewer, allowing you to navigate the classes
                // that have been generated.
                // Note the viewer can be used to modify properties, and provides a listing of
                // the code required to create the document it is displaying.
                SimpleViewer sv = new SimpleViewer(elm);
                sv.ShowDialog();

                // You can then add code to navigate the data held in the class.
                // When navigating this object model you should refer to the documentation
                // generated in the directory:
                // C:\BTS\XSD\KORUS\DESADV_XSD.xsd.Output\DocumentationCS\.
                // The help should be compiled into a chm before being used, (use build.bat)
                //- HTML Help Workshop is required to perform this,
                // and can be downloaded from Microsoft. The path to the help compiler (hhc.exe)
                // may need adjusting in build.bat

                // ...

                ////////////////////////////////////////////////////////////////////
                // The Xml can be extracted from the class using one of 3 methods //
                ////////////////////////////////////////////////////////////////////

                // This method will extract the xml into a string. The string is always encoded
                // using Unicode, there a number of options allowing the headers,
                // end of line & indenting to be set.
                string strXml = elm.ToXml();
                Console.WriteLine(strXml);

                // This method will extract the xml into a file. This method provides options
                // for changing the encoding (UTF-8, UTF-16) as well as headers,
                // end of line and indenting.
                elm.ToXmlFile(filename + ".testouput.xml");

                // This method will extract the xml into a stream. This method provides options
                // for changing the encoding (UTF-8, UTF-16) as well as headers,
                // end of line and indenting.
                // This method is useful when a specific encoding is required (typically
                // UTF-8), in order to transmit it over an 8-bit connection, smtp etc
                // without the need to write the xml to file first.
                System.IO.Stream stmXml = elm.ToXmlStream();

            }
            catch (Exception e)
            {
                DisplayError(e);
            }
        }
Exemplo n.º 3
0
        /// <summary>
        /// Allows the class to be copied
        /// </summary>
        /// <remarks>
        /// Performs a 'deep copy' of all the data in the class (and its children)
        /// </remarks>
        public override object Clone()
        {
            DESADV_XSDLib.Document_DespatchAdvice newObject = new DESADV_XSDLib.Document_DespatchAdvice(_elementName);
            foreach (DESADV_XSDLib.Document_DespatchAdvice_Group o in m_Document_DespatchAdvice_Group)
                newObject.m_Document_DespatchAdvice_Group.Add((DESADV_XSDLib.Document_DespatchAdvice_Group)o.Clone());

            // ##HAND_CODED_BLOCK_START ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS

            // Add Additional clone code here...

            // ##HAND_CODED_BLOCK_END ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS

            return newObject;
        }