JMeter.Toolkit.Engine.XSD.NewDataSet.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

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
Résultat 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