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

Deserialize() public static method

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

Same methods

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