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

Deserialize() public static method

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

Same methods

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