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

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

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

Same methods

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