ATML1671Translator.model.R2.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

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

Same methods

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