ATML1671Translator.model.S2.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

S2::Deserialize ( Stream s ) : S2
S2::Deserialize ( string input ) : S2
S2::Deserialize ( string input, S2 &obj ) : bool