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

Deserialize() public static method

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

Same methods

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