ATMLModelLibrary.model.signal.basic.SinglePhase.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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