Esempio n. 1
0
        /// Given a node, returns the parent item's node reference as IdentifiedExtensionType (not the abstract ParentType).
        /// However, the returned node may be cast to ParentType and implements IParent
        /// </summary>
        /// <param name="node"></param>
        /// <returns></returns>
        public static IdentifiedExtensionType GetParentIETypeNode(string parentID)
        {
            IdentifiedExtensionType parentItemNode = null;

            if (!string.IsNullOrWhiteSpace(parentID))
            {
                IdentifiedExtensionType.IdentExtNodes.TryGetValue(parentID, out parentItemNode);//this is the parent of node
            }
            return(parentItemNode);
        }
Esempio n. 2
0
 /// <summary>
 /// Deserializes workflow markup into an IdentifiedExtensionType object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output IdentifiedExtensionType object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out IdentifiedExtensionType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(IdentifiedExtensionType);
     try
     {
         obj = Deserialize(input);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Esempio n. 3
0
 public static bool LoadFromFile(string fileName, out IdentifiedExtensionType obj)
 {
     System.Exception exception = null;
     return(LoadFromFile(fileName, out obj, out exception));
 }
Esempio n. 4
0
 public static bool LoadFromFile(string fileName, out IdentifiedExtensionType obj, out System.Exception exception)
 {
     return(LoadFromFile(fileName, System.Text.Encoding.UTF8, out obj, out exception));
 }
Esempio n. 5
0
 /// <summary>
 /// Deserializes xml markup from file into an IdentifiedExtensionType object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output IdentifiedExtensionType object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, System.Text.Encoding encoding, out IdentifiedExtensionType obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(IdentifiedExtensionType);
     try
     {
         obj = LoadFromFile(fileName, encoding);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Esempio n. 6
0
 public static bool Deserialize(string input, out IdentifiedExtensionType obj)
 {
     System.Exception exception = null;
     return(Deserialize(input, out obj, out exception));
 }