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

Deserialize() public static method

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

Same methods

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