Esempio n. 1
0
 /// <summary>
 /// Deserializes xml markup from file into an optionType object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output optionType 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 optionType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(optionType);
     try
     {
         obj = LoadFromFile(fileName);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Deserializes workflow markup into an optionType object
 /// </summary>
 /// <param name="xml">string workflow markup to deserialize</param>
 /// <param name="obj">Output optionType 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 optionType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(optionType);
     try
     {
         obj = Deserialize(xml);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
        /// <summary>
        /// build the parent tree for the optionType items in option
        /// </summary>
        public void FixParents()
        {
            Stack <optionType> itemStack = new Stack <optionType>();
            optionType         parent    = null;
            int previousLevel            = optionType.RootLevel;

            foreach (optionType item in option)
            {
                int itemLevel = item.Level;
                if (itemLevel == previousLevel)
                {
                    if (optionType.RootLevel != itemLevel)
                    {
                        itemStack.Pop();
                        item.parent = parent;
                    }
                    itemStack.Push(item);
                }
                else
                {
                    if (itemLevel > previousLevel)
                    {
                        parent = itemStack.Peek();
                    }
                    else
                    {
                        do
                        {
                            itemStack.Pop();
                            parent        = itemStack.Peek();
                            previousLevel = parent.Level;
                        }while (previousLevel >= itemLevel);
                    }
                    itemStack.Push(item);
                    item.parent   = parent;
                    previousLevel = itemLevel;
                }
                //Console.WriteLine("{0}, {1}", item.Value.Replace(optionType.NbspEscaped, " "), item.HtmlPath);
            }
        }
Esempio n. 4
0
 public static bool LoadFromFile(string fileName, out optionType obj)
 {
     System.Exception exception = null;
     return(LoadFromFile(fileName, out obj, out exception));
 }
Esempio n. 5
0
 public static bool Deserialize(string xml, out optionType obj)
 {
     System.Exception exception = null;
     return(Deserialize(xml, out obj, out exception));
 }