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

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

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

Same methods

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