ATML1671Translator.model.instrument.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

instrument::Deserialize ( string input, instrument &obj ) : bool
instrument::Deserialize ( Stream s ) : instrument
instrument::Deserialize ( string input ) : instrument