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

Deserialize() public static method

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

Same methods

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