CSMSL.IO.MzML.ScanType.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

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

Same methods

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