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

Deserialize() public static method

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

Same methods

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