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

Deserialize() public static method

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

Same methods

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