ATMLModelLibrary.model.test.Test.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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