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

Deserialize() public static method

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

Same methods

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