ATMLModelLibrary.model.signal.basic.Notch.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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