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

Deserialize() public static method

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

Same methods

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