ATML1671Translator.model.S1.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

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

Same methods

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