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

Deserialize() public static method

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

Same methods

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