ATML1671Translator.model.instrument.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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
리턴 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