ATMLModelLibrary.model.common.Operator.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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