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

Deserialize() public static method

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

Same methods

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