ATMLModelLibrary.model.common.octal.Deserialize C# (CSharp) Method

Deserialize() public static method

Deserializes workflow markup into an octal object
public static Deserialize ( string input, octal &obj, System &exception ) : bool
input string string workflow markup to deserialize
obj octal Output octal object
exception System output Exception value if deserialize failed
return bool
        public static bool Deserialize(string input, out octal obj, out System.Exception exception)
        {
            exception = null;
            obj = default(octal);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

octal::Deserialize ( string input, octal &obj ) : bool
octal::Deserialize ( System s ) : octal
octal::Deserialize ( string input ) : octal