/// <summary>
 /// Deserializes xml markup from file into an IDF object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output IDF object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, out IDF obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(IDF);
     try
     {
         obj = LoadFromFile(fileName);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
 /// <summary>
 /// Deserializes workflow markup into an IDF object
 /// </summary>
 /// <param name="xml">string workflow markup to deserialize</param>
 /// <param name="obj">Output IDF object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this XmlSerializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string xml, out IDF obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(IDF);
     try
     {
         obj = Deserialize(xml);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Пример #3
0
        static void Main(string[] args)
        {
            var idf = new IDF()
            {
                Version         = "Version 1, Revision 3",
                ReleaseDateTime = DateTime.Now,
                Comment         = "This is a valid IDF sample file."
            };

            idf.RootNode = new Node()
            {
                Name = "RootNode",
            };
            idf.RootNode.AppendParameters();
            for (int i = 0; i < 2; i++)
            {
                var L1Child = new Node()
                {
                    Name = "Node_" + i,
                };
                idf.RootNode.Nodes.Add(L1Child);
                L1Child.AppendParameters();

                for (int j = 0; j < 2; j++)
                {
                    var L2Child = new Node()
                    {
                        Name = "Node_" + i + "-" + j,
                    };
                    L1Child.Nodes.Add(L2Child);
                    L2Child.AppendParameters();
                }
            }

            idf.SaveToFile("sample.xml");
        }
 public static bool LoadFromFile(string fileName, out IDF obj)
 {
     System.Exception exception = null;
     return(LoadFromFile(fileName, out obj, out exception));
 }
 public static bool Deserialize(string xml, out IDF obj)
 {
     System.Exception exception = null;
     return(Deserialize(xml, out obj, out exception));
 }