ATMLModelLibrary.model.signal.basic.Peak.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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

Same methods

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