ATMLModelLibrary.model.signal.STEP_SIGNAL.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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