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

Deserialize() public static method

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

Same methods

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