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

Deserialize() public static method

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

Same methods

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