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

Deserialize() public static method

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

Same methods

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