MzIdentML.ParamListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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