MzIdentML.EnzymesType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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