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

Deserialize() public static method

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

Same methods

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