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

Deserialize() public static method

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

Same methods

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