CSMSL.IO.MzML.ChromatogramListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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