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

Deserialize() public static method

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

Same methods

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