ATMLModelLibrary.model.equipment.Generic.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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