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

Deserialize() public static method

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

Same methods

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