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

Deserialize() public static method

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

Same methods

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