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

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

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

Same methods

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