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

Deserialize() public static method

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

Same methods

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