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

Deserialize() public static method

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

Same methods

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