ATML1671Translator.model.S3.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

S3::Deserialize ( Stream s ) : S3
S3::Deserialize ( string input ) : S3
S3::Deserialize ( string input, S3 &obj ) : bool