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

Deserialize() public static method

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

Same methods

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