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

Deserialize() public static method

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

Same methods

Controller::Deserialize ( System s ) : Controller
Controller::Deserialize ( string input ) : Controller
Controller::Deserialize ( string input, Controller &obj ) : bool