ATMLModelLibrary.model.signal.DIGITAL_SERIAL.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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