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

Deserialize() public static method

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

Same methods

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