ATMLModelLibrary.model.test.TestResult.Deserialize C# (CSharp) Метод

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

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

Same methods

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