JMeter.Toolkit.Engine.XSD.NewDataSet.Deserialize C# (CSharp) 메소드

Deserialize() 공개 정적인 메소드

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
리턴 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