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

Deserialize() public static method

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

Same methods

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