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

Deserialize() public static method

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

Same methods

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