JMeter.Toolkit.Engine.XSD.NewDataSet.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

NewDataSet::Deserialize ( string xml ) : NewDataSet
NewDataSet::Deserialize ( string xml, NewDataSet &obj ) : bool