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

Deserialize() public static method

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

Same methods

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