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

Deserialize() public static method

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

Same methods

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